CopyProgress Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
Number of files not adhering to azure naming conventions which were processed by automatic renaming
Total amount of data not adhering to azure naming conventions which were processed by automatic renaming
Number of folders not adhering to azure naming conventions which were processed by automatic renaming
To indicate if enumeration of data is in progress. Until this is true, the TotalBytesToProcess may not be valid.
Applies to
Azure SDK for .NET