你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

NetworkSecurityRule 构造函数

定义

重载

NetworkSecurityRule()

初始化 NetworkSecurityRule 类的新实例。

NetworkSecurityRule(String, String, String, Int32, String, String, IList<String>, IList<String>, IList<String>, IList<String>)

初始化 NetworkSecurityRule 类的新实例。

NetworkSecurityRule()

初始化 NetworkSecurityRule 类的新实例。

public NetworkSecurityRule ();
Public Sub New ()

适用于

NetworkSecurityRule(String, String, String, Int32, String, String, IList<String>, IList<String>, IList<String>, IList<String>)

初始化 NetworkSecurityRule 类的新实例。

public NetworkSecurityRule (string name, string protocol, string access, int priority, string direction, string description = default, System.Collections.Generic.IList<string> sourceAddressPrefixes = default, System.Collections.Generic.IList<string> destinationAddressPrefixes = default, System.Collections.Generic.IList<string> sourcePortRanges = default, System.Collections.Generic.IList<string> destinationPortRanges = default);
new Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule : string * string * string * int * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.NetworkSecurityRule
Public Sub New (name As String, protocol As String, access As String, priority As Integer, direction As String, Optional description As String = Nothing, Optional sourceAddressPrefixes As IList(Of String) = Nothing, Optional destinationAddressPrefixes As IList(Of String) = Nothing, Optional sourcePortRanges As IList(Of String) = Nothing, Optional destinationPortRanges As IList(Of String) = Nothing)

参数

name
String

网络安全规则名称。

protocol
String

此规则应用到的网络协议。 可能的值包括:“http”、“https”、“tcp”、“udp”、“icmp”、“ah”、“esp”

access
String

允许或拒绝网络流量。 可能的值包括:“allow”、“deny”

priority
Int32

规则的优先级。 该值的范围可以是 1000 到 3000。 超出此范围的值是为 Service Fabric ManagerCluster 资源提供程序保留的。 集合中每个规则的优先级编号必须是唯一的。 优先级编号越低,规则优先级越高。

direction
String

网络安全规则方向。 可能的值包括:“inbound”、“outbound”

description
String

网络安全规则说明。

sourceAddressPrefixes
IList<String>

CIDR 或源 IP 范围。

destinationAddressPrefixes
IList<String>

目标地址前缀。 CIDR 或目标 IP 范围。

sourcePortRanges
IList<String>

源端口范围。

destinationPortRanges
IList<String>

目标端口范围。

适用于