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
if ($DiskObject.IsOSDisk-eq"true"-and$DiskObject.DiskType-eq$validDiskTypeSpellings["PremiumV2_LRS"]) {
79
-
throw"Premium SSD V2 disk is not supported as an OS Disk in Azure."
81
+
if ($DiskObject.IsOSDisk-eq"true"-and($DiskObject.DiskType-eq$validDiskTypeSpellings["PremiumV2_LRS"]-or$DiskObject.DiskType-eq$validDiskTypeSpellings["UltraSSD_LRS"])) {
82
+
throw"$($DiskObject.DiskType)is not supported as an OS disk in Azure."
0 commit comments