Skip to content

Commit 53beabe

Browse files
committed
Merge branch 'main' into chrisda
2 parents c4d87df + 1781be5 commit 53beabe

16 files changed

+483
-820
lines changed
Lines changed: 16 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
33
online version: https://learn.microsoft.com/powershell/module/skype/get-cstenantnetworkregion
4-
applicable: Skype for Business Online
4+
applicable: Microsoft Teams
55
title: Get-CsTenantNetworkRegion
66
schema: 2.0.0
77
manager: bulenteg
8-
author: tomkau
9-
ms.author: tomkau
8+
author: jenstrier
9+
ms.author: jenstr
1010
ms.reviewer:
1111
---
1212

@@ -19,34 +19,33 @@ Returns information about the network region setting in the tenant. Tenant netwo
1919

2020
### Identity (Default)
2121
```
22-
Get-CsTenantNetworkRegion [-Tenant <System.Guid>] [[-Identity] <XdsGlobalRelativeIdentity>] [-LocalStore]
23-
[<CommonParameters>]
22+
Get-CsTenantNetworkRegion [[-Identity] <string>] [<CommonParameters>]
2423
```
2524

2625
### Filter
2726
```
28-
Get-CsTenantNetworkRegion [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]
27+
Get-CsTenantNetworkRegion [-Filter <string>] [<CommonParameters>]
2928
```
3029

3130
## DESCRIPTION
3231
A network region interconnects various parts of a network across multiple geographic areas.
3332

3433
A network region contains a collection of network sites. For example, if your organization has many sites located in India, then you may choose to designate "India" as a network region.
3534

36-
Location Based Routing is a feature which allows PSTN toll bypass to be restricted for users based upon policy and the user's geographic location at the time of an incoming or outgoing PSTN call.
35+
Location-Based Routing is a feature that allows PSTN toll bypass to be restricted for users based on policy and the user's geographic location at the time of an incoming or outgoing PSTN call.
3736

38-
Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in O365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint.
37+
Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in Microsoft 365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint.
3938

4039
## EXAMPLES
4140

42-
###-------------------------- Example 1 --------------------------
41+
### Example 1
4342
```powershell
4443
PS C:\> Get-CsTenantNetworkRegion
4544
```
4645

4746
The command shown in Example 1 returns the list of network regions for the current tenant.
4847

49-
###-------------------------- Example 2 --------------------------
48+
### Example 2
5049
```powershell
5150
PS C:\> Get-CsTenantNetworkRegion -Identity RedmondRegion
5251
```
@@ -74,7 +73,7 @@ Accept wildcard characters: False
7473
The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network region to be returned.
7574
7675
```yaml
77-
Type: XdsGlobalRelativeIdentity
76+
Type: String
7877
Parameter Sets: Identity
7978
Aliases:
8079

@@ -85,39 +84,9 @@ Accept pipeline input: False
8584
Accept wildcard characters: False
8685
```
8786
88-
### -LocalStore
89-
PARAMVALUE: SwitchParameter
90-
91-
```yaml
92-
Type: SwitchParameter
93-
Parameter Sets: (All)
94-
Aliases:
95-
96-
Required: False
97-
Position: Named
98-
Default value: None
99-
Accept pipeline input: False
100-
Accept wildcard characters: False
101-
```
102-
103-
### -Tenant
104-
Globally unique identifier (GUID) of the tenant account whose network regions are being returned.
105-
106-
```yaml
107-
Type: System.Guid
108-
Parameter Sets: (All)
109-
Aliases:
110-
111-
Required: False
112-
Position: Named
113-
Default value: None
114-
Accept pipeline input: False
115-
Accept wildcard characters: False
116-
```
117-
11887
### CommonParameters
11988
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
120-
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
89+
For more information, see [about_CommonParameters ](https://go.microsoft.com/fwlink/?LinkID=113216).
12190
12291
## INPUTS
12392
@@ -129,3 +98,8 @@ For more information, see about_CommonParameters (https://go.microsoft.com/fwlin
12998
## NOTES
13099
131100
## RELATED LINKS
101+
[New-CsTenantNetworkRegion](New-CsTenantNetworkRegion.md)
102+
103+
[Remove-CsTenantNetworkRegion](Remove-CsTenantNetworkRegion.md)
104+
105+
[Set-CsTenantNetworkRegion](Set-CsTenantNetworkRegion.md)

skype/skype-ps/skype/Get-CsTenantNetworkSite.md

Lines changed: 68 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
33
online version: https://learn.microsoft.com/powershell/module/skype/get-cstenantnetworksite
4-
applicable: Skype for Business Online
4+
applicable: Microsoft Teams
55
title: Get-CsTenantNetworkSite
66
schema: 2.0.0
77
manager: bulenteg
8-
author: tomkau
9-
ms.author: tomkau
8+
author: jenstrier
9+
ms.author: jenstr
1010
ms.reviewer:
1111
---
1212

@@ -19,13 +19,17 @@ Returns information about the network site setting in the tenant. Tenant network
1919

2020
### Identity (Default)
2121
```
22-
Get-CsTenantNetworkSite [-Tenant <System.Guid>] [[-Identity] <XdsGlobalRelativeIdentity>] [-LocalStore]
23-
[<CommonParameters>]
22+
Get-CsTenantNetworkSite [[-Identity] <string>] [-IncludePhoneNumbers <bool>] [<CommonParameters>]
23+
```
24+
25+
### QueryParameter
26+
```
27+
Get-CsTenantNetworkSite [-IncludePhoneNumbers <bool>] [-Filter <string>] [<CommonParameters>]
2428
```
2529

2630
### Filter
2731
```
28-
Get-CsTenantNetworkSite [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]
32+
Get-CsTenantNetworkSite [-IncludePhoneNumbers <bool>] [-Filter <string>] [<CommonParameters>]
2933
```
3034

3135
## DESCRIPTION
@@ -60,7 +64,7 @@ The command shown in Example 3 returns the network site that matches the specifi
6064
## PARAMETERS
6165

6266
### -Filter
63-
The Filter parameter allows you to limit the number of results based on filters you specify.
67+
Enables you to use wildcard characters when indicating the site (or sites) to be returned.
6468

6569
```yaml
6670
Type: String
@@ -75,41 +79,26 @@ Accept wildcard characters: False
7579
```
7680
7781
### -Identity
78-
The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network site to be returned.
82+
The Identity parameter is a unique identifier for the site.
7983
8084
```yaml
81-
Type: XdsGlobalRelativeIdentity
85+
Type: String
8286
Parameter Sets: Identity
8387
Aliases:
8488

85-
Required: False
86-
Position: 1
87-
Default value: None
88-
Accept pipeline input: False
89-
Accept wildcard characters: False
90-
```
91-
92-
### -LocalStore
93-
PARAMVALUE: SwitchParameter
94-
95-
```yaml
96-
Type: SwitchParameter
97-
Parameter Sets: (All)
98-
Aliases:
99-
10089
Required: False
10190
Position: Named
10291
Default value: None
10392
Accept pipeline input: False
10493
Accept wildcard characters: False
10594
```
10695
107-
### -Tenant
108-
Globally unique identifier (GUID) of the tenant account whose network sites are being returned.
96+
### -IncludePhoneNumbers
97+
This parameter is reserved for internal Microsoft use.
10998
11099
```yaml
111-
Type: System.Guid
112-
Parameter Sets: (All)
100+
Type: Boolean
101+
Parameter Sets: All
113102
Aliases:
114103

115104
Required: False
@@ -118,7 +107,6 @@ Default value: None
118107
Accept pipeline input: False
119108
Accept wildcard characters: False
120109
```
121-
122110
### CommonParameters
123111
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
124112
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
@@ -129,7 +117,57 @@ For more information, see about_CommonParameters (https://go.microsoft.com/fwlin
129117
130118
## OUTPUTS
131119
132-
### System.Object
120+
### Identity
121+
The Identity of the site.
122+
123+
### Description
124+
The description of the site.
125+
126+
### NetworkRegionID
127+
The network region ID of the site.
128+
129+
### LocationPolicyID
130+
The ID of the locaton policy assigned to the site.
131+
132+
### SiteAddress
133+
This parameter is reserved for internal Microsoft use.
134+
135+
### NetworkSiteID
136+
The ID of the network site.
137+
138+
### OnlineVoiceRoutingPolicyTagID
139+
The ID of the online voice routing policy assigned to the site.
140+
141+
### EnableLocationBasedRouting
142+
Boolean stating whether Location-Based Routing is enabled on the site.
143+
144+
### EmergencyCallRoutingPolicyTagID
145+
The ID of the Teams emergency call routing policy assigned to the site.
146+
147+
### EmergencyCallingPolicyTagID
148+
The ID of the Teams emergency calling policy assigned to the site.
149+
150+
### NetworkRoamingPolicyTagID
151+
The ID of the Teams network roaming policy assigned to the site.
152+
153+
### EmergencyCallRoutingPolicyName
154+
The name of the Teams emergency call routing policy assigned to the site.
155+
156+
### EmergencyCallingPolicyName
157+
The name of the Teams emergency calling policy assigned to the site.
158+
159+
### NetworkRoamingPolicyName
160+
The name of the Teams network roaming policy assigned to the site.
161+
162+
### PhoneNumbers
163+
This parameter is reserved for internal Microsoft use.
164+
133165
## NOTES
166+
The parameter IncludePhoneNumbers was introduced in Teams PowerShell Module 5.5.0.
134167
135168
## RELATED LINKS
169+
[New-CsTenantNetworkSite](New-CsTenantNetworkSite.md)
170+
171+
[Remove-CsTenantNetworkSite](Remove-CsTenantNetworkSite.md)
172+
173+
[Set-CsTenantNetworkSite](Set-CsTenantNetworkSite.md)

0 commit comments

Comments
 (0)