Share via


RecoveryPointDiskConfiguration Constructors

Definition

Overloads

RecoveryPointDiskConfiguration()

Initializes a new instance of the RecoveryPointDiskConfiguration class.

RecoveryPointDiskConfiguration(Nullable<Int32>, Nullable<Int32>, IList<DiskInformation>, IList<DiskInformation>)

Initializes a new instance of the RecoveryPointDiskConfiguration class.

RecoveryPointDiskConfiguration()

Initializes a new instance of the RecoveryPointDiskConfiguration class.

public RecoveryPointDiskConfiguration ();
Public Sub New ()

Applies to

RecoveryPointDiskConfiguration(Nullable<Int32>, Nullable<Int32>, IList<DiskInformation>, IList<DiskInformation>)

Initializes a new instance of the RecoveryPointDiskConfiguration class.

public RecoveryPointDiskConfiguration (int? numberOfDisksIncludedInBackup = default, int? numberOfDisksAttachedToVm = default, System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.DiskInformation> includedDiskList = default, System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.DiskInformation> excludedDiskList = default);
new Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.RecoveryPointDiskConfiguration : Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.DiskInformation> * System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.DiskInformation> -> Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.RecoveryPointDiskConfiguration
Public Sub New (Optional numberOfDisksIncludedInBackup As Nullable(Of Integer) = Nothing, Optional numberOfDisksAttachedToVm As Nullable(Of Integer) = Nothing, Optional includedDiskList As IList(Of DiskInformation) = Nothing, Optional excludedDiskList As IList(Of DiskInformation) = Nothing)

Parameters

numberOfDisksIncludedInBackup
Nullable<Int32>

Number of disks included in backup

numberOfDisksAttachedToVm
Nullable<Int32>

Number of disks attached to the VM

includedDiskList
IList<DiskInformation>

Information of disks included in backup

excludedDiskList
IList<DiskInformation>

Information of disks excluded from backup

Applies to