你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Microsoft.Network networkVirtualAppliances/inboundSecurityRules 2023-11-01
Bicep 资源定义
可以使用目标操作部署 networkVirtualAppliances/inboundSecurityRules 资源类型:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Network/networkVirtualAppliances/inboundSecurityRules 资源,请将以下 Bicep 添加到模板。
resource symbolicname 'Microsoft.Network/networkVirtualAppliances/inboundSecurityRules@2023-11-01' = {
parent: resourceSymbolicName
name: 'string'
properties: {
rules: [
{
appliesOn: [
'string'
]
destinationPortRange: int
destinationPortRanges: [
'string'
]
name: 'string'
protocol: 'string'
sourceAddressPrefix: 'string'
}
]
ruleType: 'string'
}
}
属性值
InboundSecurityRuleProperties
名字 | 描述 | 价值 |
---|---|---|
规则 | 允许的规则列表。 | InboundSecurityRules[] |
ruleType | 规则类型。 这应该是 AutoExpire 或永久的。 自动过期规则仅创建 NSG 规则。 永久规则创建 NSG 规则和 SLB LB 规则。 | “AutoExpire” “永久” |
InboundSecurityRules
名字 | 描述 | 价值 |
---|---|---|
appliesOn | 如果永久规则类型为公共 IP 名称,则为“自动过期规则”类型 & 接口名称 | string[] |
destinationPortRange | 要打开的 NVA 端口范围。 需要提供特定端口。 | int 约束: 最小值 = 0 最大值 = 65535 |
destinationPortRanges | 要打开的 NVA 端口范围。 一个端口可以提供一系列端口。 允许的端口值介于 0 和 65535 之间。 | string[] |
名字 | 规则的名称。 | 字符串 |
协议 | 协议。 这应该是 TCP 或 UDP。 | “TCP” “UDP” |
sourceAddressPrefix | CIDR 或源 IP 范围。 | 字符串 |
Microsoft.Network/networkVirtualAppliances/inboundSecurityRules
名字 | 描述 | 价值 |
---|---|---|
名字 | 资源名称 | string (必需) |
父母 | 在 Bicep 中,可以为子资源指定父资源。 仅当子资源在父资源外部声明时,才需要添加此属性。 有关详细信息,请参阅 父资源外部的子资源。 |
类型资源的符号名称:networkVirtualAppliances |
性能 | 入站安全规则的属性。 | InboundSecurityRuleProperties |
ARM 模板资源定义
可以使用目标操作部署 networkVirtualAppliances/inboundSecurityRules 资源类型:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Network/networkVirtualAppliances/inboundSecurityRules 资源,请将以下 JSON 添加到模板。
{
"type": "Microsoft.Network/networkVirtualAppliances/inboundSecurityRules",
"apiVersion": "2023-11-01",
"name": "string",
"properties": {
"rules": [
{
"appliesOn": [ "string" ],
"destinationPortRange": "int",
"destinationPortRanges": [ "string" ],
"name": "string",
"protocol": "string",
"sourceAddressPrefix": "string"
}
],
"ruleType": "string"
}
}
属性值
InboundSecurityRuleProperties
名字 | 描述 | 价值 |
---|---|---|
规则 | 允许的规则列表。 | InboundSecurityRules[] |
ruleType | 规则类型。 这应该是 AutoExpire 或永久的。 自动过期规则仅创建 NSG 规则。 永久规则创建 NSG 规则和 SLB LB 规则。 | “AutoExpire” “永久” |
InboundSecurityRules
名字 | 描述 | 价值 |
---|---|---|
appliesOn | 如果永久规则类型为公共 IP 名称,则为“自动过期规则”类型 & 接口名称 | string[] |
destinationPortRange | 要打开的 NVA 端口范围。 需要提供特定端口。 | int 约束: 最小值 = 0 最大值 = 65535 |
destinationPortRanges | 要打开的 NVA 端口范围。 一个端口可以提供一系列端口。 允许的端口值介于 0 和 65535 之间。 | string[] |
名字 | 规则的名称。 | 字符串 |
协议 | 协议。 这应该是 TCP 或 UDP。 | “TCP” “UDP” |
sourceAddressPrefix | CIDR 或源 IP 范围。 | 字符串 |
Microsoft.Network/networkVirtualAppliances/inboundSecurityRules
名字 | 描述 | 价值 |
---|---|---|
apiVersion | API 版本 | '2023-11-01' |
名字 | 资源名称 | string (必需) |
性能 | 入站安全规则的属性。 | InboundSecurityRuleProperties |
类型 | 资源类型 | “Microsoft.Network/networkVirtualAppliances/inboundSecurityRules” |
Terraform (AzAPI 提供程序)资源定义
可以使用目标操作部署 networkVirtualAppliances/inboundSecurityRules 资源类型:
- 资源组
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Network/networkVirtualAppliances/inboundSecurityRules 资源,请将以下 Terraform 添加到模板。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/networkVirtualAppliances/inboundSecurityRules@2023-11-01"
name = "string"
body = jsonencode({
properties = {
rules = [
{
appliesOn = [
"string"
]
destinationPortRange = int
destinationPortRanges = [
"string"
]
name = "string"
protocol = "string"
sourceAddressPrefix = "string"
}
]
ruleType = "string"
}
})
}
属性值
InboundSecurityRuleProperties
名字 | 描述 | 价值 |
---|---|---|
规则 | 允许的规则列表。 | InboundSecurityRules[] |
ruleType | 规则类型。 这应该是 AutoExpire 或永久的。 自动过期规则仅创建 NSG 规则。 永久规则创建 NSG 规则和 SLB LB 规则。 | “AutoExpire” “永久” |
InboundSecurityRules
名字 | 描述 | 价值 |
---|---|---|
appliesOn | 如果永久规则类型为公共 IP 名称,则为“自动过期规则”类型 & 接口名称 | string[] |
destinationPortRange | 要打开的 NVA 端口范围。 需要提供特定端口。 | int 约束: 最小值 = 0 最大值 = 65535 |
destinationPortRanges | 要打开的 NVA 端口范围。 一个端口可以提供一系列端口。 允许的端口值介于 0 和 65535 之间。 | string[] |
名字 | 规则的名称。 | 字符串 |
协议 | 协议。 这应该是 TCP 或 UDP。 | “TCP” “UDP” |
sourceAddressPrefix | CIDR 或源 IP 范围。 | 字符串 |
Microsoft.Network/networkVirtualAppliances/inboundSecurityRules
名字 | 描述 | 价值 |
---|---|---|
名字 | 资源名称 | string (必需) |
parent_id | 此资源的父资源的 ID。 | 类型资源的 ID:networkVirtualAppliances |
性能 | 入站安全规则的属性。 | InboundSecurityRuleProperties |
类型 | 资源类型 | “Microsoft.Network/networkVirtualAppliances/inboundSecurityRules@2023-11-01” |