Class NetworkPacketCaptureFilterGetArgs
Inherited Members
Namespace: Pulumi.Azure.Network.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class NetworkPacketCaptureFilterGetArgs : ResourceArgs
Constructors
View SourceNetworkPacketCaptureFilterGetArgs()
Declaration
public NetworkPacketCaptureFilterGetArgs()
Properties
View SourceLocalIpAddress
The local IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Changing this forces a new resource to be created.
Declaration
public Input<string> LocalIpAddress { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
LocalPort
The local port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Changing this forces a new resource to be created.
Declaration
public Input<string> LocalPort { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Protocol
The Protocol to be filtered on. Possible values include Any, TCP and UDP. Changing this forces a new resource to be created.
Declaration
public Input<string> Protocol { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
RemoteIpAddress
The remote IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported.. Changing this forces a new resource to be created.
Declaration
public Input<string> RemoteIpAddress { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
RemotePort
The remote port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Changing this forces a new resource to be created.
Declaration
public Input<string> RemotePort { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |