Show / Hide Table of Contents

Class PacketCaptureFilterArgs

Inheritance
System.Object
InputArgs
ResourceArgs
PacketCaptureFilterArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Network.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class PacketCaptureFilterArgs : ResourceArgs

Constructors

View Source

PacketCaptureFilterArgs()

Declaration
public PacketCaptureFilterArgs()

Properties

View Source

LocalIpAddress

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.