Skip to content

Commit 50e1b9d

Browse files
committed
Updated ChangeLog
1 parent a20403f commit 50e1b9d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/CommonModels/Utils.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ public static string GetARMResourceType(string workloadType)
330330
/// <returns>PS resource type type</returns>
331331
public static string GetWorkloadTypeFromArmType(string armType)
332332
{
333-
if (string.Compare(armType, "Microsoft.Compute/virtualMachines", ignoreCase: true) == 0)
333+
if (string.Compare(armType, "Microsoft.Compute/virtualMachines", ignoreCase: true) == 0 ||
334+
string.Compare(armType, "Microsoft.ClassicCompute/virtualMachines", ignoreCase: true) == 0)
334335
{
335336
return WorkloadType.AzureVM.ToString();
336337
}

src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup/ChangeLog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@
1717
* Overview of change #1
1818
- Additional information about change #1
1919
-->
20-
## Current Release
20+
## Current Release
21+
* Added SDK support to check backup status cmdlet.
22+
* TargetStorageAccountName is now mandatory for managed disk restores.
23+
* Removed StorageAccountName and StorageAccountResourceGroupName parameters in AzureFileShareRestore.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"
1+
"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"

0 commit comments

Comments
 (0)