Skip to content

Commit ed4158e

Browse files
authored
update CsUserCallingDelegate docs
1 parent 0212baf commit ed4158e

File tree

4 files changed

+97
-12
lines changed

4 files changed

+97
-12
lines changed

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"githubPullRequests.ignoredPullRequestBranches": [
3+
"main"
4+
]
5+
}

teams/teams-ps/MicrosoftTeams/Get-CsUserCallingSettings.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,12 @@ GroupNotificationOverride : Ring
148148
(Get-CsUserCallingSettings -Identity [email protected]).Delegates
149149
```
150150
```output
151-
152-
MakeCalls : True
153-
ManageSettings : True
154-
ReceiveCalls : True
151+
152+
MakeCalls : True
153+
ManageSettings : True
154+
ReceiveCalls : True
155+
PickUpHeldCalls : True
156+
JoinActiveCalls : True
155157
```
156158

157159
This example shows that [email protected] has simultaneous ringing set to his/her delegates (ForwardingTargetType). [email protected] is the only delegate
@@ -182,10 +184,12 @@ GroupNotificationOverride : Ring
182184
(Get-CsUserCallingSettings -Identity [email protected]).Delegators
183185
```
184186
```output
185-
186-
MakeCalls : True
187-
ManageSettings : True
188-
ReceiveCalls : True
187+
188+
MakeCalls : True
189+
ManageSettings : True
190+
ReceiveCalls : True
191+
PickUpHeldCalls : True
192+
JoinActiveCalls : True
189193
```
190194

191195
This example shows that [email protected] is a delegate of [email protected] (Delegators) and that [email protected] has given [email protected] all the

teams/teams-ps/MicrosoftTeams/New-CsUserCallingDelegate.md

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This cmdlet will add a new delegate for calling in Microsoft Teams.
1919

2020
```
2121
New-CsUserCallingDelegate -Identity <String> -Delegate <String> -MakeCalls <Boolean> -ManageSettings <Boolean>
22-
-ReceiveCalls <Boolean> [-HttpPipelinePrepend <SendAsyncStep[]>] [<CommonParameters>]
22+
-ReceiveCalls <Boolean> -PickUpHeldCalls <Boolean> -JoinActiveCalls <Boolean> [-HttpPipelinePrepend <SendAsyncStep[]>] [<CommonParameters>]
2323
```
2424

2525
## DESCRIPTION
@@ -29,7 +29,7 @@ This cmdlet adds a new delegate with given permissions for the specified user.
2929

3030
### Example 1
3131
```powershell
32-
New-CsUserCallingDelegate -Identity [email protected] -Delegate [email protected] -MakeCalls $true -ReceiveCalls $true -ManageSettings $true
32+
New-CsUserCallingDelegate -Identity [email protected] -Delegate [email protected] -MakeCalls $true -ReceiveCalls $true -ManageSettings $true -PickUpHeldCalls $true -JoinActiveCalls $true
3333
```
3434

3535
## PARAMETERS
@@ -129,6 +129,44 @@ Accept pipeline input: False
129129
Accept wildcard characters: False
130130
```
131131
132+
### -PickUpHeldCalls
133+
134+
Specifies whether delegate is allowed to pick up calls on behalf of the specified user.
135+
136+
>[!NOTE]
137+
>This parameter is currently in development and changing it does not change the behavior of the User Delegate.
138+
139+
```yaml
140+
Type: System.Boolean
141+
Parameter Sets: All
142+
Aliases:
143+
144+
Required: True
145+
Position: Named
146+
Default value: False
147+
Accept pipeline input: False
148+
Accept wildcard characters: False
149+
```
150+
151+
### -JoinActiveCalls
152+
153+
Specifies whether delegate is allowed to join active calls on behalf of the specified user.
154+
155+
>[!NOTE]
156+
>This parameter is currently in development and changing it does not change the behavior of the User Delegate.
157+
158+
```yaml
159+
Type: System.Boolean
160+
Parameter Sets: All
161+
Aliases:
162+
163+
Required: True
164+
Position: Named
165+
Default value: False
166+
Accept pipeline input: False
167+
Accept wildcard characters: False
168+
```
169+
132170
### CommonParameters
133171
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
134172

teams/teams-ps/MicrosoftTeams/Set-CsUserCallingDelegate.md

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This cmdlet will change permissions for a delegate for calling in Microsoft Team
1919

2020
```
2121
Set-CsUserCallingDelegate -Identity <String> -Delegate <String> [-MakeCalls <Boolean>]
22-
[-ManageSettings <Boolean>] [-ReceiveCalls <Boolean>] [-HttpPipelinePrepend <SendAsyncStep[]>]
22+
[-ManageSettings <Boolean>] [-ReceiveCalls <Boolean>] [-PickUpHeldCalls <Boolean>] [-JoinActiveCalls <Boolean>] [-HttpPipelinePrepend <SendAsyncStep[]>]
2323
[<CommonParameters>]
2424
```
2525

@@ -30,7 +30,7 @@ This cmdlet can change the permissions assigned to a delegate for the specified
3030

3131
### Example 1
3232
```powershell
33-
Set-CsUserCallingDelegate -Identity [email protected] -Delegate [email protected] -MakeCalls $false -ReceiveCalls $true -ManageSettings $false
33+
Set-CsUserCallingDelegate -Identity [email protected] -Delegate [email protected] -MakeCalls $false -ReceiveCalls $true -ManageSettings $false -PickUpHeldCalls $true -JoinActiveCalls $true
3434
```
3535
This example shows setting the permissions for [email protected]'s delegate [email protected].
3636

@@ -138,6 +138,44 @@ Accept pipeline input: False
138138
Accept wildcard characters: False
139139
```
140140
141+
### -PickUpHeldCalls
142+
143+
Specifies whether delegate is allowed to pick up calls on behalf of the specified user.
144+
145+
>[!NOTE]
146+
>This parameter is currently in development and changing it does not change the behavior of the User Delegate.
147+
148+
```yaml
149+
Type: System.Boolean
150+
Parameter Sets: All
151+
Aliases:
152+
153+
Required: False
154+
Position: Named
155+
Default value: False
156+
Accept pipeline input: False
157+
Accept wildcard characters: False
158+
```
159+
160+
### -JoinActiveCalls
161+
162+
Specifies whether delegate is allowed to join active calls on behalf of the specified user.
163+
164+
>[!NOTE]
165+
>This parameter is currently in development and changing it does not change the behavior of the User Delegate.
166+
167+
```yaml
168+
Type: System.Boolean
169+
Parameter Sets: All
170+
Aliases:
171+
172+
Required: False
173+
Position: Named
174+
Default value: False
175+
Accept pipeline input: False
176+
Accept wildcard characters: False
177+
```
178+
141179
### CommonParameters
142180
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
143181

0 commit comments

Comments
 (0)