Skip to content

Commit 41e3c15

Browse files
authored
Update Set-CsComplianceRecordingForCallQueueTemplate.md
1 parent f31ffa0 commit 41e3c15

File tree

1 file changed

+5
-124
lines changed

1 file changed

+5
-124
lines changed

teams/teams-ps/teams/Set-CsComplianceRecordingForCallQueueTemplate.md

Lines changed: 5 additions & 124 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.reviewer: williamlooney
1515
## SYNTAX
1616

1717
```powershell
18-
Set-CsComplianceRecordingForCallQueueTemplate -Instance <String> -Name <String> -Description <String> -BotId <String> [-RequiredDuringCall <Boolean>] [-RequiredBeforeCall <Boolean> [-CurrentInvitationCount <Int32>] [-PairedApplication <String>] [<CommonParameters>]
18+
Set-CsComplianceRecordingForCallQueueTemplate -Instance <Object> [<CommonParameters>]
1919
```
2020

2121
## DESCRIPTION
@@ -28,17 +28,12 @@ Use the Set-CsComplianceRecordingForCallQueueTemplate cmdlet to make changes to
2828

2929
### -------------------------- Example 1 --------------------------
3030
```
31-
Set-CsComplianceRecordingForCallQueueTemplate
31+
$template = CsComplianceRecordingForCallQueueTemplate -Id XXXXX
32+
$template.BotId = XXXXX
33+
Set-CsComplianceRecordingForCallQueueTemplate $template
3234
```
3335

34-
This example gets all Call Queues in the organization.
35-
36-
### -------------------------- Example 2 --------------------------
37-
```
38-
Get-CsComplianceRecordingForCallQueueTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01
39-
```
40-
41-
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.
36+
The Set-CsComplianceRecordingForCallQueueTemplate cmdlet lets you modify the properties of a Compliance Recording for Call Queue Template.
4237

4338
## PARAMETERS
4439

@@ -58,120 +53,6 @@ Accept pipeline input: False
5853
Accept wildcard characters: False
5954
```
6055
61-
### -Name
62-
The name of the compliance recording for call queue template.
63-
64-
```yaml
65-
Type: System.String
66-
Parameter Sets: (All)
67-
Aliases:
68-
applicable: Microsoft Teams
69-
70-
Required: True
71-
Position: Named
72-
Default value: None
73-
Accept pipeline input: False
74-
Accept wildcard characters: False
75-
```
76-
77-
### -Description
78-
A description for the compliance recording for call queues template.
79-
80-
```yaml
81-
Type: System.String
82-
Parameter Sets: (All)
83-
Aliases:
84-
applicable: Microsoft Teams
85-
86-
Required: True
87-
Position: Named
88-
Default value: None
89-
Accept pipeline input: False
90-
Accept wildcard characters: False
91-
```
92-
93-
### -BotId
94-
The Id of the compliance recording for call queue bot to invite.
95-
96-
```yaml
97-
Type: System.String
98-
Parameter Sets: (All)
99-
Aliases:
100-
applicable: Microsoft Teams
101-
102-
Required: True
103-
Position: Named
104-
Default value: None
105-
Accept pipeline input: False
106-
Accept wildcard characters: False
107-
```
108-
109-
### -RequiredDuringCall
110-
Indicates if the compliance recording for call queues bot must remain part of the call.
111-
*Strict recording* - if the bot leaves the call, the call will end.
112-
113-
```yaml
114-
Type: System.Booleen
115-
Parameter Sets: (All)
116-
Aliases:
117-
applicable: Microsoft Teams
118-
119-
Required: False
120-
Position: Named
121-
Default value: False
122-
Accept pipeline input: False
123-
Accept wildcard characters: False
124-
```
125-
126-
### -RequiredBeforeCall
127-
Indicates if the compliance recording for call queues bot must be able to join the call.
128-
*Strict recording* - if the bot can't join the call, the call will end.
129-
130-
```yaml
131-
Type: System.Booleen
132-
Parameter Sets: (All)
133-
Aliases:
134-
applicable: Microsoft Teams
135-
136-
Required: False
137-
Position: Named
138-
Default value: False
139-
Accept pipeline input: False
140-
Accept wildcard characters: False
141-
```
142-
143-
### -ConcurrentInvitationCount
144-
The number of concurrent invitations to send to the compliance recording for call queue bot.
145-
146-
```yaml
147-
Type: System.Int32
148-
Parameter Sets: (All)
149-
Aliases:
150-
applicable: Microsoft Teams
151-
152-
Required: False
153-
Position: Named
154-
Default value: 1
155-
Accept pipeline input: False
156-
Accept wildcard characters: False
157-
```
158-
159-
### -PairedApplication
160-
The PairedApplication parameter specifies the paired application for the call queue.
161-
162-
```yaml
163-
Type: System.String
164-
Parameter Sets: (All)
165-
Aliases:
166-
applicable: Microsoft Teams
167-
168-
Required: False
169-
Position: Named
170-
Default value: None
171-
Accept pipeline input: False
172-
Accept wildcard characters: False
173-
```
174-
17556
### CommonParameters
17657
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).
17758

0 commit comments

Comments
 (0)