Share via


DataStatistics Constructors

Definition

Overloads

DataStatistics()

Initializes a new instance of the DataStatistics class.

DataStatistics(Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the DataStatistics class.

DataStatistics()

Initializes a new instance of the DataStatistics class.

public DataStatistics ();
Public Sub New ()

Applies to

DataStatistics(Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the DataStatistics class.

public DataStatistics (long? totalData = default, long? processedData = default, long? cloudData = default, long? throughput = default);
new Microsoft.Azure.Management.StorSimple8000Series.Models.DataStatistics : Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.StorSimple8000Series.Models.DataStatistics
Public Sub New (Optional totalData As Nullable(Of Long) = Nothing, Optional processedData As Nullable(Of Long) = Nothing, Optional cloudData As Nullable(Of Long) = Nothing, Optional throughput As Nullable(Of Long) = Nothing)

Parameters

totalData
Nullable<Int64>

The total bytes of data to be processed, as part of the job.

processedData
Nullable<Int64>

The number of bytes of data processed till now, as part of the job.

cloudData
Nullable<Int64>

The number of bytes of data written to cloud, as part of the job.

throughput
Nullable<Int64>

The average throughput of data processed(bytes/sec), as part of the job.

Applies to