/// <summary>
 /// Initializes a new instance of the VolumePropertiesDataProtection
 /// class.
 /// </summary>
 /// <param name="backup">Backup</param>
 /// <param name="replication">Replication</param>
 /// <param name="snapshot">Snapshot</param>
 public VolumePropertiesDataProtection(VolumeBackupProperties backup = default(VolumeBackupProperties), ReplicationObject replication = default(ReplicationObject), VolumeSnapshotProperties snapshot = default(VolumeSnapshotProperties))
 {
     Backup      = backup;
     Replication = replication;
     Snapshot    = snapshot;
     CustomInit();
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the VolumePropertiesDataProtection
 /// class.
 /// </summary>
 /// <param name="replication">Replication</param>
 public VolumePropertiesDataProtection(ReplicationObject replication = default(ReplicationObject))
 {
     Replication = replication;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the VolumePropertiesDataProtection
 /// class.
 /// </summary>
 /// <param name="replication">Replication</param>
 /// <param name="snapshot">Snapshot</param>
 public VolumePropertiesDataProtection(ReplicationObject replication = default(ReplicationObject), VolumeSnapshotProperties snapshot = default(VolumeSnapshotProperties))
 {
     Replication = replication;
     Snapshot    = snapshot;
     CustomInit();
 }