You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Bug 1526979: Get-AzureRmRecoveryServicesBackupItem should do case insensitive comparison for container name filter
2. AzureVmItem should have property displaying ServiceClientModel.AzureIaaSVMProtectedItem.LastBackupTime
3. Some foundation for - Bug 1524000: [PowerShell][New-Ask] For V2 Vm restores, block storage accounts with Kind "Blob Storage" at PowerShell
Removing traces of changes made for Storage.Kind
Copy file name to clipboardExpand all lines: src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/AzureVmModels/AzureVmItem.cs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,11 @@ public class AzureVmItem : ItemBase
39
39
/// </summary>
40
40
publicstringLastBackupStatus{get;set;}
41
41
42
+
/// <summary>
43
+
/// Last Backup Time for the item
44
+
/// </summary>
45
+
publicDateTime?LastBackupTime{get;set;}
46
+
42
47
/// <summary>
43
48
/// Protection Policy Name for the Item
44
49
/// </summary>
@@ -63,6 +68,7 @@ public AzureVmItem(ProtectedItemResource protectedItemResource,
Copy file name to clipboardExpand all lines: src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -677,7 +677,7 @@ public List<ItemBase> ListProtectedItems()
Copy file name to clipboardExpand all lines: src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1
Copy file name to clipboardExpand all lines: src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs
+46-43Lines changed: 46 additions & 43 deletions
Original file line number
Diff line number
Diff line change
@@ -60,55 +60,17 @@ public override void ExecuteCmdlet()
Copy file name to clipboardExpand all lines: src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/RecoveryServicesBackupCmdletBase.cs
0 commit comments