Skip to content

Commit a875e5c

Browse files
Update Remove-CsTeamsShiftsScheduleRecord.md
adding missing parameters
1 parent 97d67fb commit a875e5c

File tree

1 file changed

+179
-1
lines changed

1 file changed

+179
-1
lines changed

teams/teams-ps/teams/Remove-CsTeamsShiftsScheduleRecord.md

Lines changed: 179 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,21 @@ schema: 2.0.0
1616
This cmdlet enqueues the clear schedule message.
1717

1818
## SYNTAX
19+
20+
### RemoveExpanded (Default)
21+
```powershell
22+
Remove-CsTeamsShiftsScheduleRecord [-ClearSchedulingGroup] -EntityType <String[]> -TeamId <String>
23+
[-DateRangeEndDate <DateTime>] [-DateRangeStartDate <DateTime>] [-DesignatedActorId <String>]
24+
[-TimeZone <String>] [-Break] [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>]
25+
[-PassThru] [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-WhatIf]
26+
[-Confirm] [<CommonParameters>]
1927
```
20-
Remove-CsTeamsShiftsScheduleRecord -TeamId <String> [[-DateRangeStartDate] <String>] -DateRangeEndDate <String> -ClearSchedulingGroup <Bool> -EntityType <String[]> [[-DesignatedActorId] <String>] [<CommonParameters>]
28+
29+
### Remove
30+
```powershell
31+
Remove-CsTeamsShiftsScheduleRecord -Body <IClearScheduleRequest> [-Break]
32+
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-PassThru] [-Proxy <Uri>]
33+
[-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
2134
```
2235

2336
## DESCRIPTION
@@ -124,6 +137,171 @@ Accept pipeline input: False
124137
Accept wildcard characters: False
125138
```
126139
140+
### -Body
141+
The request body.
142+
143+
```yaml
144+
Type: IClearScheduleRequest
145+
Parameter Sets: Remove
146+
Aliases:
147+
148+
Required: True
149+
Position: Named
150+
Default value: None
151+
Accept pipeline input: True (ByValue)
152+
Accept wildcard characters: False
153+
```
154+
155+
### -Break
156+
Wait for .NET debugger to attach.
157+
158+
```yaml
159+
Type: SwitchParameter
160+
Parameter Sets: (All)
161+
Aliases:
162+
163+
Required: False
164+
Position: Named
165+
Default value: None
166+
Accept pipeline input: False
167+
Accept wildcard characters: False
168+
```
169+
170+
### -Confirm
171+
Prompts you for confirmation before running the cmdlet.
172+
173+
```yaml
174+
Type: SwitchParameter
175+
Parameter Sets: (All)
176+
Aliases: cf
177+
178+
Required: False
179+
Position: Named
180+
Default value: None
181+
Accept pipeline input: False
182+
Accept wildcard characters: False
183+
```
184+
185+
### -HttpPipelineAppend
186+
SendAsync Pipeline Steps to be appended to the front of the pipeline
187+
188+
```yaml
189+
Type: SendAsyncStep[]
190+
Parameter Sets: (All)
191+
Aliases:
192+
193+
Required: False
194+
Position: Named
195+
Default value: None
196+
Accept pipeline input: False
197+
Accept wildcard characters: False
198+
```
199+
200+
### -HttpPipelinePrepend
201+
SendAsync Pipeline Steps to be prepended to the front of the pipeline
202+
203+
```yaml
204+
Type: SendAsyncStep[]
205+
Parameter Sets: (All)
206+
Aliases:
207+
208+
Required: False
209+
Position: Named
210+
Default value: None
211+
Accept pipeline input: False
212+
Accept wildcard characters: False
213+
```
214+
215+
### -PassThru
216+
Used to return an object that represents the item being modified.
217+
218+
```yaml
219+
Type: SwitchParameter
220+
Parameter Sets: (All)
221+
Aliases:
222+
223+
Required: False
224+
Position: Named
225+
Default value: None
226+
Accept pipeline input: False
227+
Accept wildcard characters: False
228+
```
229+
230+
### -Proxy
231+
The URI for the proxy server to use
232+
233+
```yaml
234+
Type: Uri
235+
Parameter Sets: (All)
236+
Aliases:
237+
238+
Required: False
239+
Position: Named
240+
Default value: None
241+
Accept pipeline input: False
242+
Accept wildcard characters: False
243+
```
244+
245+
### -ProxyCredential
246+
Credentials for a proxy server to use for the remote call.
247+
248+
```yaml
249+
Type: PSCredential
250+
Parameter Sets: (All)
251+
Aliases:
252+
253+
Required: False
254+
Position: Named
255+
Default value: None
256+
Accept pipeline input: False
257+
Accept wildcard characters: False
258+
```
259+
260+
### -ProxyUseDefaultCredentials
261+
Use the default credentials for the proxy.
262+
263+
```yaml
264+
Type: SwitchParameter
265+
Parameter Sets: (All)
266+
Aliases:
267+
268+
Required: False
269+
Position: Named
270+
Default value: None
271+
Accept pipeline input: False
272+
Accept wildcard characters: False
273+
```
274+
275+
### -TimeZone
276+
The Timezone parameter ensures that the shifts are displayed in the correct time zone based on your team’s location.
277+
278+
```yaml
279+
Type: String
280+
Parameter Sets: RemoveExpanded
281+
Aliases:
282+
283+
Required: False
284+
Position: Named
285+
Default value: None
286+
Accept pipeline input: False
287+
Accept wildcard characters: False
288+
```
289+
290+
### -WhatIf
291+
Shows what would happen if the cmdlet runs.
292+
The cmdlet is not run.
293+
294+
```yaml
295+
Type: SwitchParameter
296+
Parameter Sets: (All)
297+
Aliases: wi
298+
299+
Required: False
300+
Position: Named
301+
Default value: None
302+
Accept pipeline input: False
303+
Accept wildcard characters: False
304+
```
127305
### CommonParameters
128306
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).
129307

0 commit comments

Comments
 (0)