Share via


PacketCaptureResultInner Constructors

Definition

Overloads

PacketCaptureResultInner()

Initializes a new instance of the PacketCaptureResultInner class.

PacketCaptureResultInner(String, PacketCaptureStorageLocation, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<PacketCaptureFilter>, ProvisioningState)

Initializes a new instance of the PacketCaptureResultInner class.

PacketCaptureResultInner()

Initializes a new instance of the PacketCaptureResultInner class.

public PacketCaptureResultInner ();
Public Sub New ()

Applies to

PacketCaptureResultInner(String, PacketCaptureStorageLocation, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<PacketCaptureFilter>, ProvisioningState)

Initializes a new instance of the PacketCaptureResultInner class.

public PacketCaptureResultInner (string target, Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureStorageLocation storageLocation, string name = default, string id = default, string etag = default, int? bytesToCapturePerPacket = default, int? totalBytesPerSession = default, int? timeLimitInSeconds = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureFilter> filters = default, Microsoft.Azure.Management.Network.Fluent.Models.ProvisioningState provisioningState = default);
new Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureResultInner : string * Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureStorageLocation * string * string * string * Nullable<int> * Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureFilter> * Microsoft.Azure.Management.Network.Fluent.Models.ProvisioningState -> Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureResultInner
Public Sub New (target As String, storageLocation As PacketCaptureStorageLocation, Optional name As String = Nothing, Optional id As String = Nothing, Optional etag As String = Nothing, Optional bytesToCapturePerPacket As Nullable(Of Integer) = Nothing, Optional totalBytesPerSession As Nullable(Of Integer) = Nothing, Optional timeLimitInSeconds As Nullable(Of Integer) = Nothing, Optional filters As IList(Of PacketCaptureFilter) = Nothing, Optional provisioningState As ProvisioningState = Nothing)

Parameters

target
String

The ID of the targeted resource, only VM is currently supported.

storageLocation
PacketCaptureStorageLocation

Describes the storage location for a packet capture session.

name
String

Name of the packet capture session.

id
String

ID of the packet capture operation.

etag
String

A unique read-only string that changes whenever the resource is updated.

bytesToCapturePerPacket
Nullable<Int32>

Number of bytes captured per packet, the remaining bytes are truncated.

totalBytesPerSession
Nullable<Int32>

Maximum size of the capture output.

timeLimitInSeconds
Nullable<Int32>

Maximum duration of the capture session in seconds.

filters
IList<PacketCaptureFilter>

A list of packet capture filters.

provisioningState
ProvisioningState

The provisioning state of the packet capture session. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'

Applies to