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

FirewallRule 构造函数

定义

重载

FirewallRule()

初始化 FirewallRule 类的新实例。

FirewallRule(String, String, String, String, String)

初始化 FirewallRule 类的新实例。

FirewallRule()

初始化 FirewallRule 类的新实例。

public FirewallRule ();
Public Sub New ()

适用于

FirewallRule(String, String, String, String, String)

初始化 FirewallRule 类的新实例。

public FirewallRule (string startIpAddress, string endIpAddress, string id = default, string name = default, string type = default);
public FirewallRule (string id = default, string name = default, string type = default, string startIpAddress = default, string endIpAddress = default);
new Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule : string * string * string * string * string -> Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule
new Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule : string * string * string * string * string -> Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule
Public Sub New (startIpAddress As String, endIpAddress As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing)
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional startIpAddress As String = Nothing, Optional endIpAddress As String = Nothing)

参数

startIpAddressid
String

防火墙规则的起始 IP 地址。 这可以是 ipv4 或 ipv6。 Start 和 End 应位于同一协议中。

endIpAddressname
String

防火墙规则的结束 IP 地址。 这可以是 ipv4 或 ipv6。 Start 和 End 应位于同一协议中。

idtype
String

资源标识符。

namestartIpAddress
String

资源名称。

typeendIpAddress
String

资源类型。

适用于