你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzApplicationGatewaySku
为应用程序网关创建 SKU。
语法
New-AzApplicationGatewaySku
-Name <String>
-Tier <String>
[-Capacity <Int32>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzApplicationGatewaySku cmdlet 为 Azure 应用程序网关创建库存单位(SKU)。
示例
示例 1:为 Azure 应用程序网关创建 SKU
$SKU = New-AzApplicationGatewaySku -Name "Standard_Small" -Tier "Standard" -Capacity 2
此命令为 Azure 应用程序网关创建名为 Standard_Small 的 SKU,并将结果存储在名为 $SKU 的变量中。
参数
-Capacity
指定应用程序网关的实例数。
类型: | Nullable<T>[Int32] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定 SKU 的名称。 此参数的可接受值为:
- Standard_Small
- Standard_Medium
- Standard_Large
- WAF_Medium
- WAF_Large
- Standard_v2
- WAF_v2
- 基本
类型: | String |
接受的值: | Standard_Small, Standard_Medium, Standard_Large, WAF_Medium, WAF_Large, Standard_v2, WAF_v2, Basic |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Tier
指定 SKU 的层。 此参数的可接受值为:
- Standard
- WAF
- Standard_v2
- WAF_v2
- 基本
类型: | String |
接受的值: | Standard, WAF, Standard_v2, WAF_v2, Basic |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
输入
None