ServerEndpointSyncSessionStatus Constructors

Definition

Overloads

ServerEndpointSyncSessionStatus()

Initializes a new instance of the ServerEndpointSyncSessionStatus class.

ServerEndpointSyncSessionStatus(Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<ServerEndpointFilesNotSyncingError>, String)

Initializes a new instance of the ServerEndpointSyncSessionStatus class.

ServerEndpointSyncSessionStatus()

Initializes a new instance of the ServerEndpointSyncSessionStatus class.

public ServerEndpointSyncSessionStatus ();
Public Sub New ()

Applies to

ServerEndpointSyncSessionStatus(Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<ServerEndpointFilesNotSyncingError>, String)

Initializes a new instance of the ServerEndpointSyncSessionStatus class.

public ServerEndpointSyncSessionStatus (int? lastSyncResult = default, DateTime? lastSyncTimestamp = default, DateTime? lastSyncSuccessTimestamp = default, long? lastSyncPerItemErrorCount = default, long? persistentFilesNotSyncingCount = default, long? transientFilesNotSyncingCount = default, System.Collections.Generic.IList<Microsoft.Azure.Management.StorageSync.Models.ServerEndpointFilesNotSyncingError> filesNotSyncingErrors = default, string lastSyncMode = default);
new Microsoft.Azure.Management.StorageSync.Models.ServerEndpointSyncSessionStatus : Nullable<int> * Nullable<DateTime> * Nullable<DateTime> * Nullable<int64> * Nullable<int64> * Nullable<int64> * System.Collections.Generic.IList<Microsoft.Azure.Management.StorageSync.Models.ServerEndpointFilesNotSyncingError> * string -> Microsoft.Azure.Management.StorageSync.Models.ServerEndpointSyncSessionStatus
Public Sub New (Optional lastSyncResult As Nullable(Of Integer) = Nothing, Optional lastSyncTimestamp As Nullable(Of DateTime) = Nothing, Optional lastSyncSuccessTimestamp As Nullable(Of DateTime) = Nothing, Optional lastSyncPerItemErrorCount As Nullable(Of Long) = Nothing, Optional persistentFilesNotSyncingCount As Nullable(Of Long) = Nothing, Optional transientFilesNotSyncingCount As Nullable(Of Long) = Nothing, Optional filesNotSyncingErrors As IList(Of ServerEndpointFilesNotSyncingError) = Nothing, Optional lastSyncMode As String = Nothing)

Parameters

lastSyncResult
Nullable<Int32>

Last sync result (HResult)

lastSyncTimestamp
Nullable<DateTime>

Last sync timestamp

lastSyncSuccessTimestamp
Nullable<DateTime>

Last sync success timestamp

lastSyncPerItemErrorCount
Nullable<Int64>

Last sync per item error count.

persistentFilesNotSyncingCount
Nullable<Int64>

Count of persistent files not syncing.

transientFilesNotSyncingCount
Nullable<Int64>

Count of transient files not syncing.

filesNotSyncingErrors
IList<ServerEndpointFilesNotSyncingError>

Array of per-item errors coming from the last sync session.

lastSyncMode
String

Sync mode. Possible values include: 'Regular', 'NamespaceDownload', 'InitialUpload', 'SnapshotUpload', 'InitialFullDownload'

Applies to