Share via


RestoreStatus Constructors

Definition

Overloads

RestoreStatus()

Initializes a new instance of the RestoreStatus class.

RestoreStatus(Nullable<Boolean>, String, String, String, String, Nullable<Int64>)

Initializes a new instance of the RestoreStatus class.

RestoreStatus()

Initializes a new instance of the RestoreStatus class.

public RestoreStatus ();
Public Sub New ()

Applies to

RestoreStatus(Nullable<Boolean>, String, String, String, String, Nullable<Int64>)

Initializes a new instance of the RestoreStatus class.

public RestoreStatus (bool? healthy = default, string relationshipStatus = default, string mirrorState = default, string unhealthyReason = default, string errorMessage = default, long? totalTransferBytes = default);
new Microsoft.Azure.Management.NetApp.Models.RestoreStatus : Nullable<bool> * string * string * string * string * Nullable<int64> -> Microsoft.Azure.Management.NetApp.Models.RestoreStatus
Public Sub New (Optional healthy As Nullable(Of Boolean) = Nothing, Optional relationshipStatus As String = Nothing, Optional mirrorState As String = Nothing, Optional unhealthyReason As String = Nothing, Optional errorMessage As String = Nothing, Optional totalTransferBytes As Nullable(Of Long) = Nothing)

Parameters

healthy
Nullable<Boolean>

Restore health status

relationshipStatus
String

Status of the restore SnapMirror relationship Possible values include: 'Idle', 'Transferring', 'Failed', 'Unknown'

mirrorState
String

The status of the restore Possible values include: 'Uninitialized', 'Mirrored', 'Broken'

unhealthyReason
String

Reason for the unhealthy restore relationship

errorMessage
String

Displays error message if the restore is in an error state

totalTransferBytes
Nullable<Int64>

Displays the total bytes transferred

Applies to