Share via


CopyProgress Constructors

Definition

Overloads

CopyProgress()

Initializes a new instance of the CopyProgress class.

CopyProgress(String, Nullable<TransferType>, Nullable<DataAccountType>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>)

Initializes a new instance of the CopyProgress class.

CopyProgress()

Initializes a new instance of the CopyProgress class.

public CopyProgress ();
Public Sub New ()

Applies to

CopyProgress(String, Nullable<TransferType>, Nullable<DataAccountType>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>)

Initializes a new instance of the CopyProgress class.

public CopyProgress (string storageAccountName = default, Microsoft.Azure.Management.DataBox.Models.TransferType? transferType = default, Microsoft.Azure.Management.DataBox.Models.DataAccountType? dataAccountType = default, string accountId = default, long? bytesProcessed = default, long? totalBytesToProcess = default, long? filesProcessed = default, long? totalFilesToProcess = default, long? invalidFilesProcessed = default, long? invalidFileBytesUploaded = default, long? renamedContainerCount = default, long? filesErroredOut = default, long? directoriesErroredOut = default, long? invalidDirectoriesProcessed = default, bool? isEnumerationInProgress = default);
new Microsoft.Azure.Management.DataBox.Models.CopyProgress : string * Nullable<Microsoft.Azure.Management.DataBox.Models.TransferType> * Nullable<Microsoft.Azure.Management.DataBox.Models.DataAccountType> * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<bool> -> Microsoft.Azure.Management.DataBox.Models.CopyProgress
Public Sub New (Optional storageAccountName As String = Nothing, Optional transferType As Nullable(Of TransferType) = Nothing, Optional dataAccountType As Nullable(Of DataAccountType) = Nothing, Optional accountId As String = Nothing, Optional bytesProcessed As Nullable(Of Long) = Nothing, Optional totalBytesToProcess As Nullable(Of Long) = Nothing, Optional filesProcessed As Nullable(Of Long) = Nothing, Optional totalFilesToProcess As Nullable(Of Long) = Nothing, Optional invalidFilesProcessed As Nullable(Of Long) = Nothing, Optional invalidFileBytesUploaded As Nullable(Of Long) = Nothing, Optional renamedContainerCount As Nullable(Of Long) = Nothing, Optional filesErroredOut As Nullable(Of Long) = Nothing, Optional directoriesErroredOut As Nullable(Of Long) = Nothing, Optional invalidDirectoriesProcessed As Nullable(Of Long) = Nothing, Optional isEnumerationInProgress As Nullable(Of Boolean) = Nothing)

Parameters

storageAccountName
String

Name of the storage account. This will be empty for data account types other than storage account.

transferType
Nullable<TransferType>

Transfer type of data. Possible values include: 'ImportToAzure', 'ExportFromAzure'

dataAccountType
Nullable<DataAccountType>

Data Account Type. Possible values include: 'StorageAccount', 'ManagedDisk'

accountId
String

Id of the account where the data needs to be uploaded.

bytesProcessed
Nullable<Int64>

To indicate bytes transferred.

totalBytesToProcess
Nullable<Int64>

Total amount of data to be processed by the job.

filesProcessed
Nullable<Int64>

Number of files processed

totalFilesToProcess
Nullable<Int64>

Total files to process

invalidFilesProcessed
Nullable<Int64>

Number of files not adhering to azure naming conventions which were processed by automatic renaming

invalidFileBytesUploaded
Nullable<Int64>

Total amount of data not adhering to azure naming conventions which were processed by automatic renaming

renamedContainerCount
Nullable<Int64>

Number of folders not adhering to azure naming conventions which were processed by automatic renaming

filesErroredOut
Nullable<Int64>

Number of files which could not be copied

directoriesErroredOut
Nullable<Int64>

To indicate directories errored out in the job.

invalidDirectoriesProcessed
Nullable<Int64>

To indicate directories renamed

isEnumerationInProgress
Nullable<Boolean>

To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.

Applies to