共用方式為


WaitStatistic Constructors

Definition

Overloads

WaitStatistic()

Initializes a new instance of the WaitStatistic class.

WaitStatistic(String, String, String, Nullable<DateTime>, Nullable<DateTime>, String, String, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Double>)

Initializes a new instance of the WaitStatistic class.

WaitStatistic()

Initializes a new instance of the WaitStatistic class.

public WaitStatistic ();
Public Sub New ()

Applies to

WaitStatistic(String, String, String, Nullable<DateTime>, Nullable<DateTime>, String, String, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Double>)

Initializes a new instance of the WaitStatistic class.

public WaitStatistic (string id = default, string name = default, string type = default, DateTime? startTime = default, DateTime? endTime = default, string eventName = default, string eventTypeName = default, long? queryId = default, string databaseName = default, long? userId = default, long? count = default, double? totalTimeInMs = default);
new Microsoft.Azure.Management.MySQL.Models.WaitStatistic : string * string * string * Nullable<DateTime> * Nullable<DateTime> * string * string * Nullable<int64> * string * Nullable<int64> * Nullable<int64> * Nullable<double> -> Microsoft.Azure.Management.MySQL.Models.WaitStatistic
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional eventName As String = Nothing, Optional eventTypeName As String = Nothing, Optional queryId As Nullable(Of Long) = Nothing, Optional databaseName As String = Nothing, Optional userId As Nullable(Of Long) = Nothing, Optional count As Nullable(Of Long) = Nothing, Optional totalTimeInMs As Nullable(Of Double) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

startTime
Nullable<DateTime>

Observation start time.

endTime
Nullable<DateTime>

Observation end time.

eventName
String

Wait event name.

eventTypeName
String

Wait event type name.

queryId
Nullable<Int64>

Database query identifier.

databaseName
String

Database Name.

userId
Nullable<Int64>

Database user identifier.

count
Nullable<Int64>

Wait event count observed in this time interval.

totalTimeInMs
Nullable<Double>

Total time of wait in milliseconds in this time interval.

Applies to