ArmDataMigrationModelFactory.CopyProgressDetails Method

Definition

Initializes a new instance of CopyProgressDetails.

public static Azure.ResourceManager.DataMigration.Models.CopyProgressDetails CopyProgressDetails (string tableName = default, string status = default, string parallelCopyType = default, int? usedParallelCopies = default, long? dataRead = default, long? dataWritten = default, long? rowsRead = default, long? rowsCopied = default, DateTimeOffset? copyStart = default, double? copyThroughput = default, int? copyDuration = default);
static member CopyProgressDetails : string * string * string * Nullable<int> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<DateTimeOffset> * Nullable<double> * Nullable<int> -> Azure.ResourceManager.DataMigration.Models.CopyProgressDetails
Public Shared Function CopyProgressDetails (Optional tableName As String = Nothing, Optional status As String = Nothing, Optional parallelCopyType As String = Nothing, Optional usedParallelCopies As Nullable(Of Integer) = Nothing, Optional dataRead As Nullable(Of Long) = Nothing, Optional dataWritten As Nullable(Of Long) = Nothing, Optional rowsRead As Nullable(Of Long) = Nothing, Optional rowsCopied As Nullable(Of Long) = Nothing, Optional copyStart As Nullable(Of DateTimeOffset) = Nothing, Optional copyThroughput As Nullable(Of Double) = Nothing, Optional copyDuration As Nullable(Of Integer) = Nothing) As CopyProgressDetails

Parameters

tableName
String

Table Name.

status
String

Status of the Copy activity (InProgress, Succeeded, Failed, Canceled).

parallelCopyType
String

Type of parallel copy (Dynamic range, Physical partition, none).

usedParallelCopies
Nullable<Int32>

The degree of parallelization.

dataRead
Nullable<Int64>

Bytes read.

dataWritten
Nullable<Int64>

Bytes written.

rowsRead
Nullable<Int64>

Rows read.

rowsCopied
Nullable<Int64>

Rows Copied.

copyStart
Nullable<DateTimeOffset>

Copy Start.

copyThroughput
Nullable<Double>

Copy throughput in KBps.

copyDuration
Nullable<Int32>

Copy Duration in seconds.

Returns

A new CopyProgressDetails instance for mocking.

Applies to