PacketCaptureQueryStatusResult Constructors

Definition

Overloads

PacketCaptureQueryStatusResult()

Initializes a new instance of the PacketCaptureQueryStatusResult class.

PacketCaptureQueryStatusResult(String, String, Nullable<DateTime>, String, String, IList<String>)

Initializes a new instance of the PacketCaptureQueryStatusResult class.

PacketCaptureQueryStatusResult()

Initializes a new instance of the PacketCaptureQueryStatusResult class.

public PacketCaptureQueryStatusResult ();
Public Sub New ()

Applies to

PacketCaptureQueryStatusResult(String, String, Nullable<DateTime>, String, String, IList<String>)

Initializes a new instance of the PacketCaptureQueryStatusResult class.

public PacketCaptureQueryStatusResult (string name = default, string id = default, DateTime? captureStartTime = default, string packetCaptureStatus = default, string stopReason = default, System.Collections.Generic.IList<string> packetCaptureError = default);
new Microsoft.Azure.Management.Network.Models.PacketCaptureQueryStatusResult : string * string * Nullable<DateTime> * string * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Network.Models.PacketCaptureQueryStatusResult
Public Sub New (Optional name As String = Nothing, Optional id As String = Nothing, Optional captureStartTime As Nullable(Of DateTime) = Nothing, Optional packetCaptureStatus As String = Nothing, Optional stopReason As String = Nothing, Optional packetCaptureError As IList(Of String) = Nothing)

Parameters

name
String

The name of the packet capture resource.

id
String

The ID of the packet capture resource.

captureStartTime
Nullable<DateTime>

The start time of the packet capture session.

packetCaptureStatus
String

The status of the packet capture session. Possible values include: 'NotStarted', 'Running', 'Stopped', 'Error', 'Unknown'

stopReason
String

The reason the current packet capture session was stopped.

packetCaptureError
IList<String>

List of errors of packet capture session.

Applies to