Skip to content

Commit d0cbdc0

Browse files
Update Get-CsTeamsShiftsConnectionOperation.md
adding missing parameters
1 parent c221257 commit d0cbdc0

File tree

1 file changed

+118
-4
lines changed

1 file changed

+118
-4
lines changed

teams/teams-ps/teams/Get-CsTeamsShiftsConnectionOperation.md

Lines changed: 118 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,18 @@ This cmdlet gets the requested batch mapping operation. The batch mapping operat
1717

1818
## SYNTAX
1919

20+
### Get (Default)
21+
```powershell
22+
Get-CsTeamsShiftsConnectionOperation -OperationId <String> [-Break] [-HttpPipelineAppend <SendAsyncStep[]>]
23+
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <Uri>] [-ProxyCredential <PSCredential>]
24+
[-ProxyUseDefaultCredentials] [<CommonParameters>]
2025
```
21-
Get-CsTeamsShiftsConnectionOperation -OperationId <String> [<CommonParameters>]
26+
27+
### GetViaIdentity
28+
```powershell
29+
Get-CsTeamsShiftsConnectionOperation -InputObject <IConfigApiBasedCmdletsIdentity> [-Break]
30+
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <Uri>]
31+
[-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
2232
```
2333

2434
## DESCRIPTION
@@ -41,22 +51,126 @@ Returns the details of batch mapping operation with ID `c79131b7-9ecb-484b-a8df-
4151

4252
## PARAMETERS
4353

44-
### -Id
54+
### -Break
55+
Wait for the .NET debugger to attach.
56+
57+
```yaml
58+
Type: SwitchParameter
59+
Parameter Sets: (All)
60+
Aliases:
61+
62+
Required: False
63+
Position: Named
64+
Default value: None
65+
Accept pipeline input: False
66+
Accept wildcard characters: False
67+
```
68+
69+
### -HttpPipelineAppend
70+
SendAsync Pipeline Steps to be appended to the front of the pipeline.
71+
72+
```yaml
73+
Type: SendAsyncStep[]
74+
Parameter Sets: (All)
75+
Aliases:
76+
77+
Required: False
78+
Position: Named
79+
Default value: None
80+
Accept pipeline input: False
81+
Accept wildcard characters: False
82+
```
83+
84+
### -HttpPipelinePrepend
85+
SendAsync Pipeline Steps to be prepended to the front of the pipeline.
86+
87+
```yaml
88+
Type: SendAsyncStep[]
89+
Parameter Sets: (All)
90+
Aliases:
91+
92+
Required: False
93+
Position: Named
94+
Default value: None
95+
Accept pipeline input: False
96+
Accept wildcard characters: False
97+
```
98+
99+
### -InputObject
100+
Identity Parameter
101+
102+
```yaml
103+
Type: IConfigApiBasedCmdletsIdentity
104+
Parameter Sets: GetViaIdentity
105+
Aliases:
106+
107+
Required: True
108+
Position: Named
109+
Default value: None
110+
Accept pipeline input: True (ByValue)
111+
Accept wildcard characters: False
112+
```
45113
114+
### -OperationId
46115
The ID of the batch mapping operation.
47116
48117
```yaml
49118
Type: String
50-
Parameter Sets: (All)
119+
Parameter Sets: Get
51120
Aliases:
52-
Applicable: Microsoft Teams
121+
53122
Required: True
54123
Position: Named
55124
Default value: None
56125
Accept pipeline input: False
57126
Accept wildcard characters: False
58127
```
59128
129+
### -Proxy
130+
The URI for the proxy server to use.
131+
132+
```yaml
133+
Type: Uri
134+
Parameter Sets: (All)
135+
Aliases:
136+
137+
Required: False
138+
Position: Named
139+
Default value: None
140+
Accept pipeline input: False
141+
Accept wildcard characters: False
142+
```
143+
144+
### -ProxyCredential
145+
Credentials for a proxy server to use for the remote call.
146+
147+
```yaml
148+
Type: PSCredential
149+
Parameter Sets: (All)
150+
Aliases:
151+
152+
Required: False
153+
Position: Named
154+
Default value: None
155+
Accept pipeline input: False
156+
Accept wildcard characters: False
157+
```
158+
159+
### -ProxyUseDefaultCredentials
160+
Use the default credentials for the proxy.
161+
162+
```yaml
163+
Type: SwitchParameter
164+
Parameter Sets: (All)
165+
Aliases:
166+
167+
Required: False
168+
Position: Named
169+
Default value: None
170+
Accept pipeline input: False
171+
Accept wildcard characters: False
172+
```
173+
60174
### CommonParameters
61175
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).
62176

0 commit comments

Comments
 (0)