Skip to content

Commit 87a4f5b

Browse files
authored
Merge pull request MicrosoftDocs#7723 from TristanChen-msft/dev/NetworkSite_RoamingPolicy
Adding NetworkRoamingPolicy to TenantNetworkSite
2 parents ee3884e + 5fa194c commit 87a4f5b

File tree

2 files changed

+50
-7
lines changed

2 files changed

+50
-7
lines changed

skype/skype-ps/skype/New-CsTenantNetworkSite.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ As an Admin, you can use the Windows PowerShell command, New-CsTenantNetworkSite
2020
### Identity (Default)
2121
```
2222
New-CsTenantNetworkSite [-Tenant <System.Guid>] [-Description <String>] [-NetworkRegionID <String>]
23-
[-LocationPolicy <String>] [-EnableLocationBasedRouting <Boolean>] [-EmergencyCallRoutingPolicy <String>] [-EmergencyCallingPolicy <String>] [-OnlineVoiceRoutingPolicy <String>]
23+
[-LocationPolicy <String>] [-EnableLocationBasedRouting <Boolean>] [-EmergencyCallRoutingPolicy <String>] [-EmergencyCallingPolicy <String>] [-NetworkRoamingPolicy <String>] [-OnlineVoiceRoutingPolicy <String>]
2424
[-SiteAddress <String>] [-Identity] <XdsGlobalRelativeIdentity> [-InMemory] [-Force] [-WhatIf] [-Confirm]
2525
[<CommonParameters>]
2626
```
@@ -29,14 +29,14 @@ New-CsTenantNetworkSite [-Tenant <System.Guid>] [-Description <String>] [-Networ
2929
```
3030
New-CsTenantNetworkSite [-Tenant <System.Guid>] -NetworkSiteID <String> [-Description <String>]
3131
[-NetworkRegionID <String>] [-LocationPolicy <String>] [-EnableLocationBasedRouting <Boolean>]
32-
[-EmergencyCallRoutingPolicy <String>] [-EmergencyCallingPolicy <String>] [-OnlineVoiceRoutingPolicy <String>] [-SiteAddress <String>] [-InMemory] [-Force] [-WhatIf] [-Confirm]
32+
[-EmergencyCallRoutingPolicy <String>] [-NetworkRoamingPolicy <String>] [-EmergencyCallingPolicy <String>] [-OnlineVoiceRoutingPolicy <String>] [-SiteAddress <String>] [-InMemory] [-Force] [-WhatIf] [-Confirm]
3333
[<CommonParameters>]
3434
```
3535

3636
## DESCRIPTION
3737
A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region.
3838

39-
A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration.
39+
A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. In addition, network sites can also be used for configuring Network Roaming Policy capabilities.
4040

4141
## EXAMPLES
4242

@@ -58,6 +58,12 @@ PS C:\> New-CsTenantNetworkSite -NetworkSiteID "site2" -Description "site 2" -Ne
5858

5959
The command shown in Example 2 created the network site 'site2' with description 'site 2'. This site is enabled for LBR, and associates with network region 'RedmondRegion', with location policy 'TestLocationPolicy', and with OnlineVoiceRoutingPolicy "OVRP1"
6060

61+
###-------------------------- Example 3 --------------------------
62+
```powershell
63+
PS C:\> New-CsTenantNetworkSite -NetworkSiteID "site3" -Description "site 3" -NetworkRegionID "RedmondRegion" -NetworkRoamingPolicy "TestNetworkRoamingPolicy"
64+
```
65+
66+
The command shown in Example 3 created the network site 'site3' with description 'site 3'. This site is enabled for network roaming capabilities. The example associates the site with network region 'RedmondRegion' and network roaming policy 'TestNetworkRoamingPolicy'.
6167
## PARAMETERS
6268

6369
### -Confirm
@@ -135,6 +141,21 @@ Accept pipeline input: False
135141
Accept wildcard characters: False
136142
```
137143
144+
### -NetworkRoamingPolicy
145+
NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to.
146+
147+
```yaml
148+
Type: String
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+
138159
### -Force
139160
The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required.
140161

skype/skype-ps/skype/Set-CsTenantNetworkSite.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ As an Admin, you can use the Windows PowerShell command, Set-CsTenantNetworkSite
2020
### Identity (Default)
2121
```
2222
Set-CsTenantNetworkSite [-Tenant <System.Guid>] [-Description <String>] [-NetworkRegionID <String>]
23-
[-LocationPolicy <String>] [-EnableLocationBasedRouting <Boolean>] [-OnlineVoiceRoutingPolicy <String>]
24-
[[-Identity] <XdsGlobalRelativeIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
23+
[-LocationPolicy <String>] [-EnableLocationBasedRouting <Boolean>] [-OnlineVoiceRoutingPolicy <String>]
24+
[-NetworkRoamingPolicy <String>] [[-Identity] <XdsGlobalRelativeIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2525
```
2626

2727
### Instance
2828
```
2929
Set-CsTenantNetworkSite [-Tenant <System.Guid>] [-Description <String>] [-NetworkRegionID <String>]
3030
[-LocationPolicy <String>] [-EnableLocationBasedRouting <Boolean>] [-OnlineVoiceRoutingPolicy <String>]
31-
[-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
31+
[-NetworkRoamingPolicy <String>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3232
```
3333

3434
## DESCRIPTION
3535
A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region.
3636

37-
A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration.
37+
A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. In addition, network sites can also be used for configuring Network Roaming Policy capabilities.
3838

3939
## EXAMPLES
4040

@@ -54,6 +54,13 @@ PS C:\> Set-CsTenantNetworkSite -Identity "site2" -Description "site 2" -Network
5454

5555
The command shown in Example 2 sets the network site 'site2' with description 'site 2'. This site is enabled for LBR. The example associates the site with network region 'RedmondRegion' and with location policy 'TestLocationPolicy'.
5656

57+
###-------------------------- Example 3 --------------------------
58+
```powershell
59+
PS C:\> Set-CsTenantNetworkSite -Identity "site3" -Description "site 3" -NetworkRegionID "RedmondRegion" -NetworkRoamingPolicy "TestNetworkRoamingPolicy"
60+
```
61+
62+
The command shown in Example 3 sets the network site 'site3' with description 'site 3'. This site is enabled for network roaming capabilities. The example associates the site with network region 'RedmondRegion' and network roaming policy 'TestNetworkRoamingPolicy'.
63+
5764
## PARAMETERS
5865

5966
### -Confirm
@@ -192,6 +199,21 @@ Accept pipeline input: False
192199
Accept wildcard characters: False
193200
```
194201

202+
### -NetworkRoamingPolicy
203+
NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to.
204+
205+
```yaml
206+
Type: String
207+
Parameter Sets: (All)
208+
Aliases:
209+
210+
Required: False
211+
Position: Named
212+
Default value: None
213+
Accept pipeline input: False
214+
Accept wildcard characters: False
215+
```
216+
195217
### -Tenant
196218
Globally unique identifier (GUID) of the tenant account whose network sites are being created. For example:
197219

0 commit comments

Comments
 (0)