Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CsTeamsMediaConnectivityPolicy #11744

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion teams/teams-ps/teams/Get-CsTeamsMediaConnectivityPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ This cmdlet retrieves all Teams media connectivity policies for current tenant.

## SYNTAX

### Identity (Default)
```
Get-CsTeamsMediaConnectivityPolicy [<CommonParameters>]
Get-CsTeamsMediaConnectivityPolicy [[-Identity] <String>] [<CommonParameters>]
```

### Filter
```
Get-CsTeamsMediaConnectivityPolicy [-Filter <String>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
20 changes: 18 additions & 2 deletions teams/teams-ps/teams/New-CsTeamsMediaConnectivityPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This cmdlet creates a Teams media connectivity policy.
## SYNTAX

```powershell
New-CsTeamsMediaConnectivityPolicy -Identity <String> [<CommonParameters>]
New-CsTeamsMediaConnectivityPolicy -Identity <String> -DirectConnection <String> [<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -33,6 +33,7 @@ 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.

Expand All @@ -53,6 +54,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -DirectConnection
This setting will enable Tenant Admins to control the Teams media connectivity behavior in Teams for both Meetings and 1:1 call. If this setting is set to "true”, 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.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

Expand All @@ -69,4 +85,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

[Set-CsTeamsMediaConnectivityPolicy](https://learn.microsoft.com/powershell/module/teams/set-csteamsmediaconnectivitypolicy)

[Grant-CsTeamsMediaConnectivityPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csteamsmediaconnectivitypolicy)
[Grant-CsTeamsMediaConnectivityPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csteamsmediaconnectivitypolicy)
Loading