Skip to content

Commit 2e6da5a

Browse files
authored
Merge pull request MicrosoftDocs#3785 from danny-levin/master
Add Emergency Calling & Routing new cmdlets
2 parents 94930a4 + 495d3c9 commit 2e6da5a

9 files changed

+1432
-0
lines changed
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
applicable: Skype for Business Online
4+
title: Get-CsTeamsEmergencyCallRoutingPolicy
5+
author:danny-levin
6+
ms.author:dannyle
7+
manager: roykuntz
8+
ms.reviewer: chenc, pthota
9+
schema: 2.0.0
10+
---
11+
12+
# Get-CsTeamsEmergencyCallRoutingPolicy
13+
14+
## SYNOPSIS
15+
16+
## SYNTAX
17+
18+
### Identity (Default)
19+
```
20+
Get-CsTeamsEmergencyCallRoutingPolicy [-Tenant <System.Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
21+
[<CommonParameters>]
22+
```
23+
24+
### Filter
25+
```
26+
Get-CsTeamsEmergencyCallRoutingPolicy [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore]
27+
[<CommonParameters>]
28+
```
29+
30+
## DESCRIPTION
31+
{{ This cmdlet returns one or more Emergency Call Routing policy. This Policy is used for the life cycle of emergency call routing – emergency numbers and routing configuration }}
32+
33+
## EXAMPLES
34+
35+
### Example 1
36+
```powershell
37+
PS C:> {{ Get-CsTeamsEmergencyCallRoutingPolicy }}
38+
```
39+
40+
{{ Retrieve all emergency call routing policy that are available in your scope }}
41+
42+
### Example 2
43+
```powershell
44+
PS C:> {{ Get-CsTeamsEmergencyCallRoutingPolicy -Identity TestECRP}}
45+
```
46+
47+
{{ Retrieve one emergency call routing policy with specific identity }}
48+
49+
## PARAMETERS
50+
51+
### -Filter
52+
{{ The Filter parameter allows you to limit the number of results based on filters you specify. }}
53+
54+
```yaml
55+
Type: String
56+
Parameter Sets: Filter
57+
Aliases:
58+
59+
Required: False
60+
Position: Named
61+
Default value: None
62+
Accept pipeline input: False
63+
Accept wildcard characters: False
64+
```
65+
66+
### -Identity
67+
{{ Specify the policy that you would like to retrieve. }}
68+
69+
```yaml
70+
Type: XdsIdentity
71+
Parameter Sets: Identity
72+
Aliases:
73+
74+
Required: False
75+
Position: 1
76+
Default value: None
77+
Accept pipeline input: False
78+
Accept wildcard characters: False
79+
```
80+
81+
### -LocalStore
82+
{{ Microsoft internal use. }}
83+
84+
```yaml
85+
Type: SwitchParameter
86+
Parameter Sets: (All)
87+
Aliases:
88+
89+
Required: False
90+
Position: Named
91+
Default value: None
92+
Accept pipeline input: False
93+
Accept wildcard characters: False
94+
```
95+
96+
### -Tenant
97+
{{ Microsoft internal use. }}
98+
99+
```yaml
100+
Type: System.Guid
101+
Parameter Sets: (All)
102+
Aliases:
103+
104+
Required: False
105+
Position: Named
106+
Default value: None
107+
Accept pipeline input: False
108+
Accept wildcard characters: False
109+
```
110+
111+
### CommonParameters
112+
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).
113+
114+
## INPUTS
115+
116+
### None
117+
118+
## OUTPUTS
119+
120+
### System.Object
121+
## NOTES
122+
123+
## RELATED LINKS

Get-CsTeamsEmergencyCallingPolicy.md

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
applicable: Skype for Business Online
4+
title: Get-CsTeamsEmergencyCallingPolicy
5+
author:danny-levin
6+
ms.author:dannyle
7+
manager: roykuntz
8+
ms.reviewer: chenc, pthota
9+
schema: 2.0.0
10+
---
11+
12+
# Get-CsTeamsEmergencyCallingPolicy
13+
14+
## SYNOPSIS
15+
16+
## SYNTAX
17+
18+
### Identity (Default)
19+
```
20+
Get-CsTeamsEmergencyCallingPolicy [-Tenant <System.Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
21+
[<CommonParameters>]
22+
```
23+
24+
### Filter
25+
```
26+
Get-CsTeamsEmergencyCallingPolicy [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]
27+
```
28+
29+
## DESCRIPTION
30+
{{ This cmdlet returns one or more emergency calling policy. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. }}
31+
32+
## EXAMPLES
33+
34+
### Example 1
35+
```powershell
36+
PS C:> {{ Get-CsTeamsEmergencyCallingPolicy}}
37+
```
38+
39+
{{ Retrieve all emergency calling policy that are available in your scope}}
40+
41+
### Example 2
42+
```powershell
43+
PS C:> {{ Get-CsTeamsEmergencyCallingPolicy -Identity TestECP}}
44+
```
45+
46+
{{ Retrieve emergency calling policy that is with identity TestECP}}
47+
48+
## PARAMETERS
49+
50+
### -Filter
51+
{{ The Filter parameter allows you to limit the number of results based on filters you specify. }}
52+
53+
```yaml
54+
Type: String
55+
Parameter Sets: Filter
56+
Aliases:
57+
58+
Required: False
59+
Position: Named
60+
Default value: None
61+
Accept pipeline input: False
62+
Accept wildcard characters: False
63+
```
64+
65+
### -Identity
66+
{{ Specify the policy that you would like to retrieve. }}
67+
68+
```yaml
69+
Type: XdsIdentity
70+
Parameter Sets: Identity
71+
Aliases:
72+
73+
Required: False
74+
Position: 1
75+
Default value: None
76+
Accept pipeline input: False
77+
Accept wildcard characters: False
78+
```
79+
80+
### -LocalStore
81+
{{ Microsoft internal use. }}
82+
83+
```yaml
84+
Type: SwitchParameter
85+
Parameter Sets: (All)
86+
Aliases:
87+
88+
Required: False
89+
Position: Named
90+
Default value: None
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
95+
### -Tenant
96+
{{ Microsoft internal use only. }}
97+
98+
```yaml
99+
Type: System.Guid
100+
Parameter Sets: (All)
101+
Aliases:
102+
103+
Required: False
104+
Position: Named
105+
Default value: None
106+
Accept pipeline input: False
107+
Accept wildcard characters: False
108+
```
109+
110+
### CommonParameters
111+
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).
112+
113+
## INPUTS
114+
115+
### None
116+
117+
## OUTPUTS
118+
119+
### System.Object
120+
## NOTES
121+
122+
## RELATED LINKS

0 commit comments

Comments
 (0)