NsgSecurityRule コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
NsgSecurityRule() |
NsgSecurityRule クラスの新しいインスタンスを初期化します。 |
NsgSecurityRule(String, String, String, String, String, String, Nullable<Int32>, String, String, String) |
NsgSecurityRule クラスの新しいインスタンスを初期化します。 |
NsgSecurityRule()
NsgSecurityRule クラスの新しいインスタンスを初期化します。
public NsgSecurityRule ();
Public Sub New ()
適用対象
NsgSecurityRule(String, String, String, String, String, String, Nullable<Int32>, String, String, String)
NsgSecurityRule クラスの新しいインスタンスを初期化します。
public NsgSecurityRule (string name = default, string access = default, string description = default, string destinationAddressPrefix = default, string destinationPortRange = default, string direction = default, int? priority = default, string protocol = default, string sourceAddressPrefix = default, string sourcePortRange = default);
new Microsoft.Azure.Management.Migrate.ResourceMover.Models.NsgSecurityRule : string * string * string * string * string * string * Nullable<int> * string * string * string -> Microsoft.Azure.Management.Migrate.ResourceMover.Models.NsgSecurityRule
Public Sub New (Optional name As String = Nothing, Optional access As String = Nothing, Optional description As String = Nothing, Optional destinationAddressPrefix As String = Nothing, Optional destinationPortRange As String = Nothing, Optional direction As String = Nothing, Optional priority As Nullable(Of Integer) = Nothing, Optional protocol As String = Nothing, Optional sourceAddressPrefix As String = Nothing, Optional sourcePortRange As String = Nothing)
パラメーター
- name
- String
セキュリティ規則の名前を取得または設定します。
- access
- String
ネットワーク トラフィックを許可または拒否するかどうかを取得または設定します。 指定できる値は、“Allow” および “Deny” です。
- description
- String
この規則の説明を取得または設定します。 140 文字に制限されています。
- destinationAddressPrefix
- String
宛先アドレス プレフィックスを取得または設定します。 CIDR またはソース IP 範囲。 "*" を使用して、すべてのソース IP を照合することもできます。 "VirtualNetwork"、"AzureLoadBalancer"、"Internet" などの既定のタグも使用できます。
- destinationPortRange
- String
宛先ポートまたは範囲を取得または設定します。 整数または 0 ~ 65535 の範囲。 "*" を使用して、すべてのポートを照合することもできます。
- direction
- String
ルールの方向を取得または設定します。InBound または Outbound。 この方向は、ルールの評価が受信または送信トラフィックのどちらで行われるかを指定します。
ルールの優先度を取得または設定します。 値は 100 から 4096 の間で指定できます。 優先度番号は、コレクション内のルールごとに一意である必要があります。 優先度番号が低いほど、規則の優先度が高くなります。
- protocol
- String
この規則が適用されるネットワーク プロトコルを取得または設定します。 Tcp、Udp、または All(*) を指定できます。
- sourceAddressPrefix
- String
ソース アドレスプレフィックスを取得または設定します。 CIDR またはソース IP 範囲。 "*" を使用して、すべてのソース IP を照合することもできます。 "VirtualNetwork"、"AzureLoadBalancer"、"Internet" などの既定のタグも使用できます。 これがイングレス ルールの場合は、ネットワーク トラフィックの発信元を指定します。
- sourcePortRange
- String
ソース ポートまたは範囲を取得または設定します。 整数または 0 ~ 65535 の範囲。"*" を使用して、すべてのポートを照合することもできます。
適用対象
Azure SDK for .NET