Share via


BackupStatus Constructors

Definition

Overloads

BackupStatus()

Initializes a new instance of the BackupStatus class.

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

Initializes a new instance of the BackupStatus class.

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

Initializes a new instance of the BackupStatus class.

BackupStatus()

Initializes a new instance of the BackupStatus class.

public BackupStatus ();
Public Sub New ()

Applies to

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

Initializes a new instance of the BackupStatus class.

public BackupStatus (bool? healthy = default, string relationshipStatus = default, string mirrorState = default, string unhealthyReason = default, string errorMessage = default, long? lastTransferSize = default, string lastTransferType = default, long? totalTransferBytes = default);
new Microsoft.Azure.Management.NetApp.Models.BackupStatus : Nullable<bool> * string * string * string * string * Nullable<int64> * string * Nullable<int64> -> Microsoft.Azure.Management.NetApp.Models.BackupStatus
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 lastTransferSize As Nullable(Of Long) = Nothing, Optional lastTransferType As String = Nothing, Optional totalTransferBytes As Nullable(Of Long) = Nothing)

Parameters

healthy
Nullable<Boolean>

Backup health status

relationshipStatus
String

Status of the backup mirror relationship. Possible values include: 'Idle', 'Transferring'

mirrorState
String

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

unhealthyReason
String

Reason for the unhealthy backup relationship

errorMessage
String

Displays error message if the backup is in an error state

lastTransferSize
Nullable<Int64>

Displays the last transfer size

lastTransferType
String

Displays the last transfer type

totalTransferBytes
Nullable<Int64>

Displays the total bytes transferred

Applies to

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

Initializes a new instance of the BackupStatus class.

public BackupStatus (bool? healthy = default, string relationshipStatus = default, string mirrorState = default, string unhealthyReason = default, string errorMessage = default, long? lastTransferSize = default, string lastTransferType = default, long? totalTransferBytes = default, long? transferProgressBytes = default);
new Microsoft.Azure.Management.NetApp.Models.BackupStatus : Nullable<bool> * string * string * string * string * Nullable<int64> * string * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.NetApp.Models.BackupStatus
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 lastTransferSize As Nullable(Of Long) = Nothing, Optional lastTransferType As String = Nothing, Optional totalTransferBytes As Nullable(Of Long) = Nothing, Optional transferProgressBytes As Nullable(Of Long) = Nothing)

Parameters

healthy
Nullable<Boolean>

Backup health status

relationshipStatus
String

Status of the backup mirror relationship Possible values include: 'Idle', 'Transferring', 'Failed', 'Unknown'

mirrorState
String

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

unhealthyReason
String

Reason for the unhealthy backup relationship

errorMessage
String

Displays error message if the backup is in an error state

lastTransferSize
Nullable<Int64>

Displays the last transfer size

lastTransferType
String

Displays the last transfer type

totalTransferBytes
Nullable<Int64>

Displays the total bytes transferred

transferProgressBytes
Nullable<Int64>

Displays the total number of bytes transferred for the ongoing operation

Applies to