你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzIpConfigurationBgpPeeringAddressObject
创建新的 IpconfigurationBgpPeeringAddressObject
语法
New-AzIpConfigurationBgpPeeringAddressObject
-IpConfigurationId <String>
-CustomAddress <System.Collections.Generic.List`1[System.String]>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
New-AzIpConfigurationBgpPeeringAddressObject 创建一个 IpConfigurationBgpPeeringAddressObject 对象,该对象表示虚拟网络网关 bgpsettings 中的 BgpPeeringAddresses 属性。
示例
示例 1:创建 AzIpConfigurationBgpPeeringAddressObject
$ipconfigurationId1 = '/subscriptions/c886bc58-0000-4e01-993f-e01ba3702aaf/resourceGroups/testRg/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/default'
$addresslist1 = @('169.254.21.5')
$gw1ipconfBgp1 = New-AzIpConfigurationBgpPeeringAddressObject -IpConfigurationId $ipconfigurationId1 -CustomAddress $addresslist1
上述对象将创建 IpConfigurationBgpPeeringAddressObject。此新对象将为 gw1ipconfBgp1。
参数
-Confirm
提示你在运行 cmdlet 之前进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-CustomAddress
BgpPeeringAddresses 的虚拟网络网关 CustomAddress 列表。
类型: | List<T>[String] |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-IpConfigurationId
BgpPeeringAddresses 的虚拟网络网关 IpConfigurationId。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示运行该 cmdlet 时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
None