Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="Microsoft.Azure.Management.Network" Version="19.21.1-preview" />
<PackageReference Include="Microsoft.Azure.Management.RecoveryServices" Version="4.3.0-preview" />
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="14.3.0" />
<PackageReference Include="Microsoft.Azure.Management.RecoveryServices.SiteRecovery" Version="2.0.8-preview" />
<PackageReference Include="Microsoft.Azure.Management.RecoveryServices.SiteRecovery" Version="2.1.0-preview" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1268,6 +1268,8 @@ public ASRAzureToAzureSpecificRPIDetails(A2AReplicationDetails details)
this.VmEncryptionType = details.VmEncryptionType;
this.InitialPrimaryFabricLocation = details.InitialPrimaryFabricLocation;
this.InitialRecoveryFabricLocation = details.InitialRecoveryFabricLocation;
this.InitialPrimaryZone = details.InitialPrimaryZone;
this.InitialRecoveryZone = details.InitialRecoveryZone;
this.LifecycleId = details.LifecycleId;

if (details.LastHeartbeat != null)
Expand Down Expand Up @@ -1440,6 +1442,16 @@ public ASRAzureToAzureSpecificRPIDetails(A2AReplicationDetails details)
/// </summary>
public string InitialRecoveryFabricLocation { get; set; }

/// <summary>
/// Gets or sets the initial primary zone.
/// </summary>
public string InitialPrimaryZone { get; set; }

/// <summary>
/// Gets or sets the initial recovery zone.
/// </summary>
public string InitialRecoveryZone { get; set; }

/// <summary>
/// Gets or sets the only constant ID throught out the enable disable cycle.
/// (with multiple switch protections in the middle) - Recovery Plans refer this ID.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ItemGroup>
<PackageReference Include="AutoMapper" Version="6.2.2" />
<PackageReference Include="Microsoft.Azure.Management.RecoveryServices" Version="4.3.0-preview" />
<PackageReference Include="Microsoft.Azure.Management.RecoveryServices.SiteRecovery" Version="2.0.8-preview" />
<PackageReference Include="Microsoft.Azure.Management.RecoveryServices.SiteRecovery" Version="2.1.0-preview" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/RecoveryServices/RecoveryServices/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* Azure Backup Added Long term retention support for Azure FileShare Recovery Points.
* Azure Backup Added disk exclusion properties to `Get-AzRecoveryServicesBackupItem` cmdlet output.
* Added private endpoint for Vault credential file for site recovery service.
* Azure Site Recovery added support for zone to zone replication using recovery plan.

## Version 2.8.0
* Azure Site Recovery added support for doing reprotect and updated vm properties for Azure disk encrypted Virtual Machines.
Expand Down