Modifies a link between two regions configured for call admission control (CAC).
Syntax
Set-CsNetworkRegionLink [-Identity <XdsGlobalRelativeIdentity>] [-BWPolicyProfileID <String>] [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-NetworkRegionID1 <String>] [-NetworkRegionID2 <String>] [-WhatIf [<SwitchParameter>]] |
Set-CsNetworkRegionLink [-BWPolicyProfileID <String>] [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-Instance <PSObject>] [-NetworkRegionID1 <String>] [-NetworkRegionID2 <String>] [-WhatIf [<SwitchParameter>]] |
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Optional |
XdsGlobalRelativeIdentity |
The unique identifier for the network region link you want to modify. Network region links are created only at the global scope, so this identifier does not need to specify a scope. Instead, it contains a string that is a unique name that identifies that link. |
BWPolicyProfileID |
Optional |
String |
The Identity of the bandwidth policy profile that will define the limitations for this link. You can retrieve a list of available profiles by calling the Get-CsNetworkBandwidthPolicyProfile cmdlet. |
Confirm |
Optional |
SwitchParameter |
Prompts you for confirmation before executing the command. |
Instance |
Optional |
PSObject |
An object reference to a network region link. This object must be of type Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkRegionLinkType, which can be retrieved by calling Get-CsNetworkRegionLink. |
NetworkRegionID1 |
Optional |
String |
The Identity (NetworkRegionID) of the region that is linked to the region identified by the NetworkRegionID2 property. |
NetworkRegionID2 |
Optional |
String |
The Identity (NetworkRegionID) of the region that is linked to the region identified by the NetworkRegionID1 property. |
WhatIf |
Optional |
SwitchParameter |
Describes what would happen if you executed the command without actually executing the command. |
Detailed Description
Regions within a network are linked through physical WAN connectivity. This cmdlet modifies a link between two regions, changing either of the regions that are linked as well as the bandwidth limitations on audio and video connections between these regions.
Return Types
This cmdlet does not return a value. It modifies an object of type Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkRegionLinkType.
Examples
-------------------------- Example 1 --------------------------
Copy Code | |
---|---|
Set-CsNetworkRegionLink -Identity NA_EMEA -BWPolicyProfileID HighBWLimits |
This example changes the bandwidth policy profile of the network region link named NA_EMEA to the HighBWLimits profile. The name of the network region link we want to modify is specified as the value for the Identity parameter. Next, we’ve also assigned the value HighBWLimits to the BWPolicyProfile parameter. This will assign the bandwidth limitations defined in that bandwidth policy profile (HighBWLimits) to connections between these regions.