Skip to content

Commit b467041

Browse files
authored
Merge pull request MicrosoftDocs#10402 from JensTrier/JensUpdates3
Updates to TeamsCallHoldPolicy and Get-CsOnlineVoiceUser
2 parents b420e1b + 1937fc0 commit b467041

6 files changed

+95
-161
lines changed

skype/skype-ps/skype/Get-CsOnlineVoiceUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Get-CsOnlineVoiceUser [-CivicAddressId <XdsCivicAddressId>] [-DomainController <
2424

2525
## DESCRIPTION
2626

27-
**Note**: This cmdlet will be deprecated. You should start using the replacement cmdlets described here as soon as possible.
27+
**Note**: This cmdlet has been deprecated from the public and GCC cloud instances. You should use the replacement cmdlets described here.
2828

2929
The following table lists the parameters to `Get-CsOnlineVoiceUser` and the alternative method of getting the same data using a combination of `Get-CsOnlineUser`, `Get-CsPhoneNumberAssignment`, `Get-CsOnlineLisLocation`, and `Get-CsOnlineLisCivicAddress`.
3030

skype/skype-ps/skype/Get-CsTeamsCallHoldPolicy.md

Lines changed: 5 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ title: Get-CsTeamsCallHoldPolicy
66
schema: 2.0.0
77
ms.reviewer:
88
manager: abnair
9-
ms.author: jomarque
10-
author: joelhmarquez
9+
ms.author: jenstr
10+
author: jenstrier
1111
---
1212

1313
# Get-CsTeamsCallHoldPolicy
@@ -16,18 +16,16 @@ author: joelhmarquez
1616

1717
Returns information about the policies configured to customize the call hold experience for Teams clients.
1818

19-
2019
## SYNTAX
2120

2221
### Identity (Default)
2322
```
24-
Get-CsTeamsCallHoldPolicy [-Tenant <System.Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
25-
[<CommonParameters>]
23+
Get-CsTeamsCallHoldPolicy [[-Identity] <string>] [<CommonParameters>]
2624
```
2725

2826
### Filter
2927
```
30-
Get-CsTeamsCallHoldPolicy [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]
28+
Get-CsTeamsCallHoldPolicy [-Filter <string>] [<CommonParameters>]
3129
```
3230

3331
## DESCRIPTION
@@ -94,7 +92,7 @@ To return a policy configured at the per-user scope, use syntax like this:
9492
You cannot use wildcard characters when specifying the Identity.
9593

9694
```yaml
97-
Type: XdsIdentity
95+
Type: String
9896
Parameter Sets: Identity
9997
Aliases:
10098
@@ -105,36 +103,6 @@ Accept pipeline input: False
105103
Accept wildcard characters: False
106104
```
107105

108-
### -LocalStore
109-
This parameter is reserved for internal Microsoft use.
110-
111-
```yaml
112-
Type: SwitchParameter
113-
Parameter Sets: (All)
114-
Aliases:
115-
116-
Required: False
117-
Position: Named
118-
Default value: None
119-
Accept pipeline input: False
120-
Accept wildcard characters: False
121-
```
122-
123-
### -Tenant
124-
This parameter is reserved for internal Microsoft use.
125-
126-
```yaml
127-
Type: System.Guid
128-
Parameter Sets: (All)
129-
Aliases:
130-
131-
Required: False
132-
Position: Named
133-
Default value: None
134-
Accept pipeline input: False
135-
Accept wildcard characters: False
136-
```
137-
138106
### CommonParameters
139107
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).
140108

skype/skype-ps/skype/Grant-CsTeamsCallHoldPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ title: Grant-CsTeamsCallHoldPolicy
66
schema: 2.0.0
77
ms.reviewer:
88
manager: abnair
9-
ms.author: jomarque
10-
author: joelhmarquez
9+
ms.author: jenstr
10+
author: jenstrier
1111
---
1212

1313
# Grant-CsTeamsCallHoldPolicy

skype/skype-ps/skype/New-CsTeamsCallHoldPolicy.md

Lines changed: 33 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ title: New-CsTeamsCallHoldPolicy
66
schema: 2.0.0
77
ms.reviewer:
88
manager: abnair
9-
ms.author: jomarque
10-
author: joelhmarquez
9+
ms.author: jenstr
10+
author: jenstrier
1111
---
1212

1313
# New-CsTeamsCallHoldPolicy
@@ -16,12 +16,10 @@ author: joelhmarquez
1616

1717
Creates a new Teams call hold policy in your tenant. The Teams call hold policy is used to customize the call hold experience for Teams clients.
1818

19-
2019
## SYNTAX
2120

2221
```
23-
New-CsTeamsCallHoldPolicy [-Tenant <System.Guid>] [-Description <String>] [-AudioFileId <String>]
24-
[-Identity] <XdsIdentity> [-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
22+
New-CsTeamsCallHoldPolicy [-Identity] <string> [-Description <string>] [-AudioFileId <string>] [-StreamingSourceUrl <string>] [-StreamingSourceAuthType <string>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2523
```
2624

2725
## DESCRIPTION
@@ -44,28 +42,30 @@ Any Microsoft Teams users who are assigned this policy will have their call hold
4442

4543
## PARAMETERS
4644

47-
### -AudioFileId
48-
A string representing the ID referencing an audio file uploaded via the Import-CsOnlineAudioFile cmdlet.
45+
### -Identity
46+
Unique identifier to be assigned to the new Teams call hold policy.
4947

5048
```yaml
5149
Type: String
5250
Parameter Sets: (All)
5351
Aliases:
5452

55-
Required: False
56-
Position: Named
53+
Required: True
54+
Position: 1
5755
Default value: None
5856
Accept pipeline input: False
5957
Accept wildcard characters: False
6058
```
6159
62-
### -Confirm
63-
Prompts you for confirmation before running the cmdlet.
60+
### -Description
61+
Enables administrators to provide explanatory text to accompany a Teams call hold policy.
62+
63+
For example, the Description might include information about the users the policy should be assigned to.
6464
6565
```yaml
66-
Type: SwitchParameter
66+
Type: String
6767
Parameter Sets: (All)
68-
Aliases: cf
68+
Aliases:
6969

7070
Required: False
7171
Position: Named
@@ -74,10 +74,8 @@ Accept pipeline input: False
7474
Accept wildcard characters: False
7575
```
7676
77-
### -Description
78-
Enables administrators to provide explanatory text to accompany a Teams call hold policy.
79-
80-
For example, the Description might include information about the users the policy should be assigned to.
77+
### -AudioFileId
78+
A string representing the ID referencing an audio file uploaded via the Import-CsOnlineAudioFile cmdlet.
8179
8280
```yaml
8381
Type: String
@@ -91,11 +89,11 @@ Accept pipeline input: False
9189
Accept wildcard characters: False
9290
```
9391
94-
### -Force
95-
Suppresses the display of any non-fatal error message that might arise when running the command.
92+
### -StreamingSourceUrl
93+
This parameter is reserved for internal Microsoft use.
9694
9795
```yaml
98-
Type: SwitchParameter
96+
Type: String
9997
Parameter Sets: (All)
10098
Aliases:
10199

@@ -106,27 +104,23 @@ Accept pipeline input: False
106104
Accept wildcard characters: False
107105
```
108106
109-
### -Identity
110-
Unique identifier to be assigned to the new Teams call hold policy.
111-
112-
Use the "Global" Identity if you wish to assign this policy to the entire tenant.
107+
### -StreamingSourceAuthType
108+
This parameter is reserved for internal Microsoft use.
113109
114110
```yaml
115-
Type: XdsIdentity
111+
Type: String
116112
Parameter Sets: (All)
117113
Aliases:
118114

119-
Required: True
120-
Position: 1
115+
Required: False
116+
Position: Named
121117
Default value: None
122118
Accept pipeline input: False
123119
Accept wildcard characters: False
124120
```
125121
126-
### -InMemory
127-
Creates an object reference without actually committing the object as a permanent change.
128-
129-
If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet.
122+
### -Force
123+
Suppresses the display of any non-fatal error message that might arise when running the command.
130124
131125
```yaml
132126
Type: SwitchParameter
@@ -140,13 +134,14 @@ Accept pipeline input: False
140134
Accept wildcard characters: False
141135
```
142136
143-
### -Tenant
144-
This parameter is reserved for internal Microsoft use.
137+
### -WhatIf
138+
Shows what would happen if the cmdlet runs.
139+
The cmdlet is not run.
145140
146141
```yaml
147-
Type: System.Guid
142+
Type: SwitchParameter
148143
Parameter Sets: (All)
149-
Aliases:
144+
Aliases: wi
150145

151146
Required: False
152147
Position: Named
@@ -155,14 +150,13 @@ Accept pipeline input: False
155150
Accept wildcard characters: False
156151
```
157152
158-
### -WhatIf
159-
Shows what would happen if the cmdlet runs.
160-
The cmdlet is not run.
153+
### -Confirm
154+
Prompts you for confirmation before running the cmdlet.
161155
162156
```yaml
163157
Type: SwitchParameter
164158
Parameter Sets: (All)
165-
Aliases: wi
159+
Aliases: cf
166160

167161
Required: False
168162
Position: Named

skype/skype-ps/skype/Remove-CsTeamsCallHoldPolicy.md

Lines changed: 18 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ title: Remove-CsTeamsCallHoldPolicy
66
schema: 2.0.0
77
ms.reviewer:
88
manager: abnair
9-
ms.author: jomarque
10-
author: joelhmarquez
9+
ms.author: jenstr
10+
author: jenstrier
1111
---
1212

1313
# Remove-CsTeamsCallHoldPolicy
@@ -20,8 +20,7 @@ Deletes an existing Teams call hold policy in your tenant. The Teams call hold p
2020
## SYNTAX
2121

2222
```
23-
Remove-CsTeamsCallHoldPolicy [-Tenant <System.Guid>] [-Identity] <XdsIdentity> [-Force] [-WhatIf] [-Confirm]
24-
[<CommonParameters>]
23+
Remove-CsTeamsCallHoldPolicy [-Identity] <string> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2524
```
2625

2726
## DESCRIPTION
@@ -50,18 +49,18 @@ The Filter value "Tag:*" limits the returned data to Teams call hold policies co
5049

5150
## PARAMETERS
5251

53-
### -Confirm
54-
Prompts you for confirmation before running the cmdlet.
52+
### -Identity
53+
Unique identifier of the Teams call hold policy to be removed.
5554

5655
```yaml
57-
Type: SwitchParameter
56+
Type: String
5857
Parameter Sets: (All)
59-
Aliases: cf
58+
Aliases:
6059

61-
Required: False
62-
Position: Named
60+
Required: True
61+
Position: 1
6362
Default value: None
64-
Accept pipeline input: False
63+
Accept pipeline input: True (ByPropertyName)
6564
Accept wildcard characters: False
6665
```
6766
@@ -80,28 +79,14 @@ Accept pipeline input: False
8079
Accept wildcard characters: False
8180
```
8281
83-
### -Identity
84-
Unique identifier assigned to the Teams call hold policy.
85-
86-
```yaml
87-
Type: XdsIdentity
88-
Parameter Sets: (All)
89-
Aliases:
90-
91-
Required: True
92-
Position: 1
93-
Default value: None
94-
Accept pipeline input: True (ByPropertyName)
95-
Accept wildcard characters: False
96-
```
97-
98-
### -Tenant
99-
This parameter is reserved for internal Microsoft use.
82+
### -WhatIf
83+
Shows what would happen if the cmdlet runs.
84+
The cmdlet is not run.
10085
10186
```yaml
102-
Type: System.Guid
87+
Type: SwitchParameter
10388
Parameter Sets: (All)
104-
Aliases:
89+
Aliases: wi
10590

10691
Required: False
10792
Position: Named
@@ -110,14 +95,13 @@ Accept pipeline input: False
11095
Accept wildcard characters: False
11196
```
11297
113-
### -WhatIf
114-
Shows what would happen if the cmdlet runs.
115-
The cmdlet is not run.
98+
### -Confirm
99+
Prompts you for confirmation before running the cmdlet.
116100
117101
```yaml
118102
Type: SwitchParameter
119103
Parameter Sets: (All)
120-
Aliases: wi
104+
Aliases: cf
121105

122106
Required: False
123107
Position: Named
@@ -131,8 +115,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
131115
132116
## INPUTS
133117
134-
### Microsoft.Rtc.Management.Xds.XdsIdentity
135-
136118
## OUTPUTS
137119
138120
### System.Object

0 commit comments

Comments
 (0)